搜索资源列表
简单数据结构的实现
- Shell 排序 单链表 堆排序 简单二叉树 快速排序 冒泡排序 数组生成最小堆 杨辉三角形
list
- 用 C++做的一个单链表,适合初学者学习数据结构,特别推荐
student
- 单链表实现简单学生管理源码,数据结构实验,C语言实现。
Maze
- 一个用C写的迷宫小游戏,旨在对C中的指针及数据结构中的单链表和栈的使用的训练。
xianxing
- 4. 假设有两个按数据元素值非递减有序排列的线性表A和B,均以单链表作为存储结构。编写算法将A表和B表归并成一个按元素值递减有序(即非递增有序,允许值相同)排列的线性表C。-4. Assuming there are two data elements according to the value of non-decreasing in an orderly array of linear forms A and B, are single-linked list as a storage s
linearformoftheapplication
- 数据结构中C++实现的线性表的应用,单链表中插入和删除-Data structure in C++ implementation of the linear form of the application, a single list in the insert and delete
Liner
- C实现的单链表,具备插入删除节点等功能,数据结构课的作业-C implementation of the single list, with features such as insert delete nodes, data structure class homework
duonode
- 关于数据结构的iaocheng链表处理的c++的一些实例教程,主要是单链表,循环链表十字链表的知识
Ds
- 使用c++ 语言编写的数据结构演示程序,包括单链表、树、图、广义表,散列表等-Using c++ language demo of the data structure, including such as single-chain, tree, map, generalized list,hash table
vc_Algorithm
- VC++数据结构与算法经典的上百种源码包,绝对对C++编程有帮助,涉及数学、底层编程、校验算法、问题算法、文件算法、大小写转换、进制转换、字符转换、数组、单链表、二分查找、汉诺塔算法以及其它一些常用算法,有的含有示例,C++编程不可多得的编程资料。-VC++ data structures and algorithms on hundreds of classic source package, absolutely on the C++ programming help, involving
data
- 数据结构——单链表基本操作,用的是C语言编写的,可能有小错。-Data structure- the basic operation of a single linked list, using the C language, and there may be minor mistakes.
kechengsheji
- 数据结构课程设计,C语言,其中包含两则,一个是单链表的基本操作,500条语句,另外一个200条,是利用堆栈进行多种运算,均有报告-Curriculum design, data structures, C language, which contains two, one is the basic operation of a single linked list, 500 statements, while a 200 is the use of the stack for a variety
linkedlist
- 大学计算机专业数据结构中的单链表,用C++编写。-University computer science data structure linked list, using C++ written.
1
- 已知按值递增有序排练的两个线性表A和B,且每个线性表内部各元素互不相同。试构造线性表C,使其是A和B的交集,且其中的数字同样按值递增排列。 要求: 1)分别采用顺序表、单链表、双链表三种数据结构存储上述线性表A、B、C 2)编写一个通用的程序(无论线性表A、B和C采用顺序表、单链表还是双链表存储,该程序完全通用),实现对线性表C的构造-Known to increase the value ordered by the two linear tables A rehearsal an
SHIYAN2
- 数据结构单链表(c++模板类实现),希望对需要的人有点帮助-c++模板类实现
Single-linked-list
- 数据结构 单链表,用C语言实现,在VC6.0下实现-Single-linked list data structures, C language, to achieve in the VC6.0
sqlist
- 完成了对数据结构中单链表的简单封装,作为C++的小作业-Completed a single-linked list data structure simple package, as a small operation C++
Node
- 用C语言描述数据结构中单链表的有关算法,包括建立,插入,删除,销毁链表-In C language to describe the data structure in a single linked list of the algorithms, including the establishment, insert, delete, destroy list
C++数据结构代码
- 本压缩包里含有队列、链表(单链表、双链表和循环链表)、栈、队列、两个栈实现一个队列、二叉树等数据结构的C++代码实现。
数据结构实验一
- 以带头结点的单链表作为存储结构,对两个班级的学生成绩进行管理,要求实现如下功能: (1)通过键盘输入若干学生的班级号、学号、成绩,将学生信息(学号、成绩)分别保存在各自班级的单链表中 (2)分别按顺序(由高到低)输出各班的成绩表。 (3)输入班级号、学号和成绩变更(如+5,-3), (4)分别按顺序输出变更后各班的成绩表。 (5)分别输出各班的总人数、最高分、最低分、平均分。(The program is written in C language, and takes the sin