
算法
ding_xudong14
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
串的定长顺序存储表示
串的定长顺序存储表示是一种类似于线性表的顺序存储结构,用一组地址连续的存储单元存储串值的字符序列。 在实现时主要实现以下功能: int Length(SString s); //串长 bool StringConcat(SString T, SString s1, SString s2);//用T返回s1和s2连接的串 v...2015-05-19 07:47:36 · 209 阅读 · 0 评论 -
迷宫求解
采用了以栈为基础,在栈的基础上进行迷宫的求解,用Stack和Maze两个文件来实现功能。 Stack.h的实现如下: #pragma once #include #include #include #include typedef int DirectiveType; //下一个通道方向 #define RANGE 100 ...2015-05-20 07:51:17 · 195 阅读 · 0 评论