登录

最新会员 最新下载

成为了本站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. 编程语言:Visual C++
  2. 代码类别:数据结构
  3. 发布时间:一月内
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. yu992324

  总结了10种排序的方式。用代码加以实现。(the ten way of Line up a preface)

1
下载
114
浏览
2010-07-29发布

2. Huffman

  程序可以实现哈弗曼自动编码功能!很详细的!很有参考价值!(Program can be Havermann automatic coding features! Very detailed! A good reference!)

1
下载
107
浏览
2010-07-21发布

3. code1

   键盘任意输入一组字母或数字生成无序数组,对数组按ASCII顺序进行排序(排序要求至少用两种排序算法),再从键盘输入一个值进行二分查找,返回查找成功或者失败的信息(Keyboard input and a group of letters, or any number of arrays, and generate disordered array sort order according to the ASCII at least two requirements (sort of), sorting algorithms from the keyboard input a value dichotomy, returns to find success or failure of the information)

2
下载
117
浏览
2010-07-14发布

4. kruscal_Primspanningtree

  最小生成树两种经典算法,kruscal和Prim算法(spanning tree)

19
下载
103
浏览
2010-07-14发布

5. 12

说明:  c编写的链表连接函数,上课时学的,上传试试 (c write the list to connect function, class, learn, try uploading)

0
下载
113
浏览
2010-07-08发布

6. npxkcsj

  数据结构课程设计,多种内部排序的效率分析(Data structure course design, the efficiency of a variety of internal sorting)

3
下载
139
浏览
2010-07-07发布

7. Z

说明:  在给定的字母中,用c++来实现字母的排序(In a given letter, the use of c++ to implement the letter of the sort)

0
下载
126
浏览
2010-06-29发布

8. BinaryTree

  数据结构使用三叉链表表示的二叉树的基本操作(Data structures using the binary tree expressed in the trigeminal lists the basic operation of)

2
下载
102
浏览
2010-06-26发布

9. 1

说明:  顺序表的基本操作:1. 编写函数,输入一组整型元素序列,建立一个顺序表。 2. 编写函数,实现对该顺序表的遍历。 3. 编写函数,在顺序表中进行顺序查找某一元素,查找成功则返回其存储位置i,否则返回错误信息。 4. 编写函数,实现在顺序表的第i个位置上插入一个元素x的算法。 5. 编写函数,实现删除顺序表中第i个元素的算法。 6. 编写利用有序表插入算法建立一个有序表的函数。 7. 编写函数,利用以上算法,建立两个非递减有序表,并把它们合并成一个非递减有序表。 8. 编写函数,实现输入一个元素x,把它插入到有序表中,使顺序表依然有序。 9. 编写一个主函数,在主函数中设计一个简单的菜单,分别调试上述算法。 (The basic operation of the order form)

0
下载
78
浏览
2010-06-15发布

10. Maze_Engine

  数据结构一书上 关于迷宫游戏的算法 (Book on data structure algorithms on maze game)

2
下载
113
浏览
2010-06-12发布

11. Huffman

  哈夫曼树可以使读者快速方便的查找所需文件(Huffman tree allows readers to quickly and easily find the file)

2
下载
75
浏览
2010-06-09发布

12. 2

说明:  用数据结构的遍历,对于小毛驴过河解决实际问题。(Traversing the data structure used for the small donkey across the river to solve practical problems.)

0
下载
106
浏览
2010-06-02发布

13. b

说明:  定义一个类SortArray继承自MyArray,在该类中定义函数sort实现排序功能。 定义一个类ReArray继承自MyArray,在该类中定义函数reverse实现逆转功能。 定义一个类AverArray继承自MyArray,在该类中定义函数Aver实现求解整数的平均值。 定义NewArray类,同时继承了SortArray、ReArray和AverArray,使得NewArray类的对象同时具有排序、逆转和求平均值的功能。在继承的过程中声明为虚基类,体会虚基类在解决二义性问题中的作用。 (Define a class SortArray inherited from MyArray, defined in the class sorting function sort implementation. Define a class ReArray inherited from MyArray, define the function in reverse to achieve such reversal function. Define a class AverArray inherited from MyArray, defined in the class to solve integer function Aver achieve the average. Defined NewArray class, and inherits SortArray, ReArray and AverArray, making the object of both NewArray class sorting, reversing, and the mean value of the function. In the process of succession declared as virtual base classes, virtual base class experience in resolving ambiguities of the role.)

0
下载
125
浏览
2010-06-02发布

14. test

  使用vc编写的一个动态链接库,测试动态链接库的例程(Vc prepared using a dynamic link library, dynamic link library routine testing)

10
下载
106
浏览
2010-05-28发布

15. xunhuansaiqxf

  算法课程设计 分治法解决循环赛日程表 源代码+word报告+答辩PPT(Curriculum design of divide and conquer algorithm to solve a round robin schedule report+ source code+ word reply PPT)

209
下载
125
浏览
2010-05-26发布

16. huffman

  数据结构(严蔚敏版)中哈夫曼树的操作程序源代码(Of data structure (Yan Wei Min version) operating procedures in the source code Huffman tree)

3
下载
111
浏览
2010-05-24发布

17. improvedKMPalgorithm

  大学计算机专业,数据结构中的改进的KMP算法,C++编写。(University computer science, data structures to improve the KMP algorithm, C++ written.)

2
下载
128
浏览
2010-05-24发布

18. tudebianli

  图的遍历问题 数据结构 C C++ 源码 课程设计 严蔚敏版的书(yrteryryer)

3
下载
116
浏览
2010-05-08发布

19. Numbersequence

说明:  简单的数据结构算法 在POJ上的题目 利用C++实现(Simple data structure algorithm in POJ on the subject using C++ Implementation)

0
下载
101
浏览
2010-05-04发布

20. KMP

说明:  KMP算法的具体实现,能够在O(n+m)时间内找出字串在父串中的位置,n为父串长度,m为字串长度(KMP in the proposed algorithm, can be O (n+ m) time to find the string in the parent string position, n the parent string length, m for the string length)

0
下载
115
浏览
2010-04-28发布