登录

最新会员 最新下载

成为了本站VIP会员

2024-12-25 15:38

成为了本站VIP会员

2024-12-25 12:28

成为了本站VIP会员

2024-12-25 12:10

成为了本站VIP会员

2024-12-24 23:54

成为了本站VIP会员

2024-12-24 23:29

成为了本站VIP会员

2024-12-21 19:40
已选条件
  1. 编程语言:C++
  2. 代码类别:数据结构
  3. 发布时间:不限
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. Tic-tac-toe-chess

  C语言实现井字棋博弈的过程,采用极大极小算法。(The C language game of tic-tac-toe chess, using the minimax algorithm.)

19
下载
122
浏览
2012-05-20发布

2. ANT

  A*算法通过启发式探索下一结点,逐步逼近目标结点,且使得路径最短。(A* algorithm heuristic to explore the next node, and gradually approaching the target node, and that the shortest path.)

3
下载
116
浏览
2012-05-17发布

3. prim

  普利姆算法用来求解最小生成树问题很容易,使得树的最小权值最小。(Prim algorithm used to solve the minimum spanning tree problem is easy, the minimum weight is the lowest of the tree)

2
下载
133
浏览
2012-05-17发布

4. test12

  约瑟夫问题,用数据结构的循环链表实现约瑟夫问题的解答(Joseph problems,30 people in a circle, and inspires us with a circular chain to said. Can use structure array to make a cycle chain. The structure has two members, one for pointing down a pointer to a circular chain )

3
下载
107
浏览
2012-05-14发布

5. ddt

  多段图、遍历、排序。用C语言解决多段图中的成本问题,得出最佳优化方案。(More paragraphs figure, traverse, ranking. C language solve more paragraphs in the chart the cost, obtains the best optimization scheme. )

3
下载
111
浏览
2012-05-12发布

6. Birch

  这是birch C语言的源代码。里面有详细的代码注释方便学习birch算法(birch c)

58
下载
102
浏览
2012-05-08发布

7. huffman-code

  该小程序为哈弗曼编码系统,带有一个小界面,主要执行的功能是对输入的数据进行编码,译码,构造并打印哈夫曼树。并且将输入的数据进行保存。(The applet is Felicity Huffman coding system, with a small interface, main function is performed on the input data encoding, decoding, construct and print a Huffman tree. Data entered and saved. )

4
下载
74
浏览
2012-05-06发布

8. zhebanchazhao

  这半查找法 是一种快速查找算法 查找效率比较高 容易实现 理想的查找算法(This search method is a fast and find more efficient algorithms to find easy to implement the ideal search algorithm)

3
下载
90
浏览
2012-05-04发布

9. shizuo

  用哈夫曼编码的方式进行图像的压缩,其中定义了一个cdib的类,通过之类来对图像进行处理(image coding in haffman)

4
下载
114
浏览
2012-04-27发布

10. 1013_digital_root

  数字根算法,用最简单的代码计算数字根。如果把一个大数的各位数字相加得到一个和,再把这个和的各位数字相加又得一个和,再继续作数字和,直到最后的数字和是个位数为止,这最后的数称为最初那个数的“数字根”。(Digital root algorithm, with the most simple code to calculate the digital root. If you figure in a large numbers is the sum of a, then this and you figure the sum is again a, and then continue for digital and until the final figure and the single digits, the last number called initially that the number of "digital root".)

3
下载
119
浏览
2012-04-27发布

11. 1

说明:  贪婪算法的简单描述 不过没做完 只是想下个程序 用用。。。。 (greed math)

0
下载
137
浏览
2012-04-26发布

12. lianbiaoqiujiaoji

  该程序是数据结构中以链表存储形式来求两个集合的交集,用C++语言描述的(The program is the form of a linked list stored in the data structures to seek the intersection of two sets, C++ language to describe)

4
下载
102
浏览
2012-04-24发布

13. Vector-and-Matrix-Template

  向量类模板和矩阵类模板,能够实现各种常用的算法,作为工程开发的数据结构(Vector class template and template matrix class, able to achieve a variety of commonly used algorithms and data structures as the project development)

14
下载
61
浏览
2012-04-20发布

14. route-planning

  遗传算法实现飞机在三维空间的航迹规划 C代码(Genetic Algorithm Route Planning C code)

210
下载
117
浏览
2012-04-20发布

15. parking-Manage

  用数据结构知识模拟计算停车场里汽车的停车时间及费用。(Using the knowledge of data structures to simulate and calculate the time and cost of car parking in the parking lot.)

2
下载
78
浏览
2012-04-18发布

16. maopao_youhua

  冒泡优化: 如果一个序列是int n[]={1,2,3,4,5,6,7,8,9} , 用正常的冒泡排序需要排8次才行,优化之后1次就好,也就是说序列越接近于正常序列,改进之后的冒泡排序的次数就越少,这样会给一个冒泡排序算法带了很大的效率。 思想:添加一个boolean变量用来判断冒泡是否是已经排好了顺序,如果boolean的值为false,说明是已经排好了,如果boolean的值true,说明没有排好,继续排。(If a sequence is int n [] = {, 1,2,3,4,5,6,7,8,9} need to row 8 times the job after optimization times like normal bubble sort, but alsomeans that the sequence is more close to the normal sequence, improved bubble sort, the less the number, which would give a bubble sort algorithm with a great deal of efficiency. Idea: add a boolean variable used to determine the bubble whether it is already lined up the order, if the boolean is false, indicating already lined up, if the boolean value of true, did not line up, continue to row.)

2
下载
125
浏览
2012-04-18发布

17. sort.cpp

  各种排序的模板实现,并分析了各种实现的时间复杂度及改进办法(Templates of various sort, and analyze the time complexity of the various implementations and ways to improve)

2
下载
95
浏览
2012-04-14发布

18. beipaowenti

  背包算法的c++简单实现,很有用的,可以看看(Knapsack algorithm)

3
下载
128
浏览
2012-04-10发布

19. Simulation-of-dendritic-growth

  模拟枝晶生长,在统计学常用的一种算法,对随机理论有帮助。(Simulation of dendritic growth, the statistics used an algorithm, the stochastic theory.)

60
下载
126
浏览
2012-04-06发布

20. maze

  c语言完成的数据结构几个小算法游戏包括迷宫求解等(C language of complete data structure several small algorithm game includes maze solution, etc )

2
下载
99
浏览
2012-03-29发布