搜索资源列表
lianbiao2
- 链表的例程 一种模版 用指针c++实现的一种源程序
1-1
- c++二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护,当需要插入表项时,若新元素比当前位置值要大,则往前移动;若小则往后移动。编写函数DoubleSort实现上述排序算法。 template <class T> void DoubliSort( T a[], int n)
1-2
- 二、通过将其元素插入到双向链表中的方法对数组A进行排序。算法对链表的当前操作位置进行维护,当需要插入表项时,若新元素比当前位置值要大,则往前移动;若小则往后移动。编写函数DoubleSort实现上述排序算法。 template <class T> void DoubliSort( T a[], int n)
zhebanchazhao
- 关于对顺序链表的折半查找功能的实现等等,非常有用
1
- 通讯录的源代码用链表实现 通讯录的源代码用链表实现 还不错
c2
- 1、 有n个学生,每个学生有m门成绩,每个学生的m门成绩用一单链表实现,n个学生所对应n个单链表的头指针用一指针数组统一存放。 1) 建立该存贮结构。 2) 查找第i个学生的某门课成绩。 链表中结点结构: struct node {char *nam;/*nam为课程名*/ float sco;/*sco为该门课程的成绩*/ struct node *link;/*link为指向下一课程结点的指针*/ -1, there are n students, e
skk
- 建立循环链表,实现选猴王的程序:输入N只猴子,从第一只猴子开始报数(M),数到m的那只猴子就推出,如此循环,剩下的最后一直猴子就是猴王-Circulation list set up, implementation procedures for the election of the King: Enter the N monkeys, monkeys from the first start off (M), only a few of the m Monkey on the introduc
stu
- 用汇编语言实现学生基本信息的管理系统,采用静态链表的存储结构,可完成插入、排序、删除、查找等基本功能。-Students to use assembly language to achieve the basic information management system, using a static list of the storage structure, to be completed by insertion sort, delete, search and other basic
Joseph
- 一种比较简单的实现约瑟夫换的方法,未使用循环链表-A relatively simple method for the realization of Joseph, unused circular linked list
debug
- 链表的相关知识且实现各种不同的功能,实现集合的交差并集-List of the relevant knowledge and the realization of various functions to achieve the collection and cross-cutting and assembly
node
- 大一新生~利用类实现链表节点插入以及删除 并用于输入序号查数据或输入数据查序号-~ Freshmen class implements a linked list node using insert and delete and search for input data or input data serial number search
lianbiao
- 链表,可以实现链表的功能,在程序设计中长用到,而且已经通过了。-Linked list
tingchechang
- 以栈模拟停车场,以队列模拟车场外的便道,按照从终端读入的输入数据序列进行模拟管理。每一组输入数据包括三个数据项:汽车“到达”或“离去”信息、汽车牌照号码以及到达或离去的时刻。对每一组输入数据进行操作后的输出信息为:若是车辆到达,则输出汽车在停车场内或便道上的停车位置;若是车辆离去,则输出汽车在停车场内停留的时间和应交纳的费用(在便道上停留的时间不收费)。栈以顺序结构实现,队列以链表结构实现。-Stack mimics the parking to the queue simulation car
dataquery
- 数据结构中的链表操作部分的经典算法程序实现,vc++下调试通过,很值得参考!-Operating part of the linked list data structure classical algorithm program vc++ through debugging, it is worth considering!
monkey
- 刚开始学习数据结构 用循环链表实现猴子选大王-With a circular linked list implementation monkey king election
circular-linked-list-Josephus
- 约瑟夫环问题 【问题描述】 Josephus排列问题定义如下:假设n个竞赛者排成一个环形。给定一个正整数m≤n,从第1人开始,沿环计数,第m人出列。这个过程一直进行到所有人都出列为止。最后出列者为优胜者。全部出列次序定义了1,2,…n的一个排列。称为(n,m)Josephus排列。例如,(7,3)Josephus排列为3,6,2,7,5,1,4。 【实验要求】 设计求解Josephus排列问题程序。 (1)采用顺序表、单链表或双向循环链表等数据结构。 (2)采用双向循环
123
- 简单的职工工资管理系统 通过链表实现的-Simple wages management system implemented by list
lianbiao
- 循坏链表,利用循坏链表实现学生成绩管理系统,详细的描述了编程具体步骤-Through the bad list, use the list to achieve through the bad student performance management system, a detailed descr iption of the program specific steps
二叉链表
- 一、 实验目的 (一) 掌握二叉树的逻辑结构和二叉链表存储结构; (二) 验证二叉树的二叉存储和遍历及其基本操作的实现; (三) 理解算法与程序的关系,能够将顺序表算法转化为对应程序;(First, the purpose of the experiment (1) master the logical structure of the two tree and the storage structure of the two linked list; (two) verify the
Merge
- 1、分别用顺序表和链表实现 2、利用菜单选择相应功能 3、能连续执行两表合并(1. The implementation of the sequence table and the chain table 2. Use the menu to select the corresponding function 3. Continuous execution of two table merging)