登录

最新会员 最新下载

成为了本站VIP会员

06月06日 13:21

成为了本站VIP会员

06月03日 10:51

成为了本站VIP会员

06月02日 22:03

成为了本站VIP会员

05月31日 10:38

成为了本站VIP会员

05月31日 09:22

成为了本站VIP会员

05月28日 17:59
已选条件
  1. 编程语言:C#
  2. 代码类别:数据结构
  3. 发布时间:不限
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. maze

  迷宫求解一般采用“穷举法”,逐一沿顺时针方向查找相邻块(一共四块-东(右)、南(下),西(左)、北(上))是否可通,即该相邻块既是通道块,且不在当前路径上。用一个栈来记录已走过的路径栈是限定仅在表尾(top)进行插入或删除操作的线性表。(Maze solving generally use the " exhaustive" one by one to find adjacent blocks in a clockwise direction (a total of four- East (right), South (down), West (left), North (on)) whether to pass, that the both channel blocks adjacent blocks, and not in the current path. Use a stack to record the path traversed stack is limited only in the tail (top) to insert or delete a linear form.)

4
下载
88
浏览
2013-12-13发布

2. heapSort.cpp.tar

  这是一个堆排序的算法源程序,算法被单独写成一个函数,希望对大家有用(This is a heap sort algorithm source code, algorithms are written as a separate function, we hope to be useful)

3
下载
67
浏览
2013-12-12发布

3. heapSort.cpp.tar

  这是一个堆排序的算法源程序,算法被单独写成一个函数,希望对大家有用(This is a heap sort algorithm source code, algorithms are written as a separate function, we hope to be useful)

3
下载
74
浏览
2013-12-12发布

4. Polynomial

  Polynomial基于数据结构的思想,文件比较小,可以直接运行(Polynomial based on the idea of ​ ​ data structures, file is relatively small and can be run directly)

4
下载
79
浏览
2013-12-11发布

5. Polynomial

  Polynomial基于数据结构的思想,文件比较小,可以直接运行(Polynomial based on the idea of ​ ​ data structures, file is relatively small and can be run directly)

4
下载
90
浏览
2013-12-11发布

6. chain

  链表的模板类,提供插入删除,遍历器,查找等功能,只有一个头文件,可以包含到你的工程(template implemention of Chain)

3
下载
106
浏览
2013-12-09发布

7. chain

  链表的模板类,提供插入删除,遍历器,查找等功能,只有一个头文件,可以包含到你的工程(template implemention of Chain)

3
下载
78
浏览
2013-12-09发布

8. erchashu

  二叉树的链式存储、先序中序遍历和层次遍历。(构造一棵树并输入数据,编写三个函数,非别是树的前序递归遍历算法、树的后序递归遍历算法、树的非递归中序遍历算法(这里的非递归以中序为例)。在主程序中调用这三个函数进行树的遍历,观察用不同的遍历方法输出的数据的顺序和验证递归与非递归输出的数据是否一样。)(Chain store binary tree, preorder traversal and hierarchy traversal.)

3
下载
81
浏览
2013-12-07发布

9. erchashu

  二叉树的链式存储、先序中序遍历和层次遍历。(构造一棵树并输入数据,编写三个函数,非别是树的前序递归遍历算法、树的后序递归遍历算法、树的非递归中序遍历算法(这里的非递归以中序为例)。在主程序中调用这三个函数进行树的遍历,观察用不同的遍历方法输出的数据的顺序和验证递归与非递归输出的数据是否一样。)(Chain store binary tree, preorder traversal and hierarchy traversal.)

3
下载
72
浏览
2013-12-07发布

10. Huffman

  数据结构实验之哈夫曼算法,欢迎下载指正。带有可执行程序(Experimental data structure of the Huffman algorithm.Welcome to download correction. With an executable program)

3
下载
102
浏览
2013-12-07发布

11. Huffman

  数据结构实验之哈夫曼算法,欢迎下载指正。带有可执行程序(Experimental data structure of the Huffman algorithm.Welcome to download correction. With an executable program)

3
下载
101
浏览
2013-12-07发布

12. StackandQueue

  该ppt包含了栈和队列的数据结构及基本操作,同时还有栈的举例(This ppt contains the stack and queue data structure and basic operation, as well as examples of the stack)

4
下载
95
浏览
2013-12-06发布

13. StackandQueue

  该ppt包含了栈和队列的数据结构及基本操作,同时还有栈的举例(This ppt contains the stack and queue data structure and basic operation, as well as examples of the stack)

3
下载
83
浏览
2013-12-06发布

14. bfs

  这是BFS算法的实现。用C语言实现的。好好学习吧。(This is achieved BFS algorithm. Implemented using C language. Learn it.)

12
下载
86
浏览
2013-12-05发布

15. bfs

  这是BFS算法的实现。用C语言实现的。好好学习吧。(This is achieved BFS algorithm. Implemented using C language. Learn it.)

12
下载
97
浏览
2013-12-05发布

16. GraphTheory

  讲述数据机构的图论部分和程序设计的关系,适合学习算法的同学学习阅读,很不错的一本书。(Graph theory algorithm and programming)

4
下载
86
浏览
2013-12-04发布

17. GraphTheory

  讲述数据机构的图论部分和程序设计的关系,适合学习算法的同学学习阅读,很不错的一本书。(Graph theory algorithm and programming)

4
下载
96
浏览
2013-12-04发布

18. tree

  使用非递归的方法遍历二叉树,可以直接运行。( Non-recursive binary tree traversal.)

3
下载
119
浏览
2013-12-04发布

19. tree

  使用非递归的方法遍历二叉树,可以直接运行。( Non-recursive binary tree traversal.)

3
下载
91
浏览
2013-12-04发布

20. abc

  数据结构的稀疏矩阵的几部分操作,广工的课程设计(Sparse matrix operations)

1
下载
79
浏览
2013-12-03发布