搜索资源列表
模板动态数组
- 本代码提供对动态数组的支持,在内存中程序将数据分块存放,避免了大块内存的申请,同时也和普通的双向链表不同的是本代码提供了对内部数据的快速索引,大大提高了数据访问速度。-the code for the dynamic array of support, in memory processes data block stored, to avoid a large memory applications, but also ordinary and the two-way linked list
Chain模板的定义
- 链表模板类的定义及使用-Chain template class definition and use
StudentManagementSystem
- 基于链表模板的学生成绩管理系统,功能比较强大
list
- C语言编写的标准链表模板。包含链表的9种基本操作,链表的创建,判断,结点的增加、删除、查找,链表的删除等。
LinkListTemp
- 双向链表模板,实现了链表的算法,采用模板技术,因此可以接受泛化的数据
兩個链表模板类
- 编写一个STL中的CString类-preparation of a STL redeem Cla
Queue
- C++队列操作程序,链表 模板制作,对于理解链表有帮助-C++ queue operating procedures, list templates, and helpful for understanding the list
doubleList
- 使用C++做的双链表模板类 具有头插法,尾插法,左向插入,右向插入,删除结点,获取结点值,设置结点值,复制构造函数,还重载了输出操作符、赋值操作符、相等操作符和不等操作符,还具有倒置链表的功能。还有结点类的重载的输出操作符,具有很好的封装性。-Using C++ to do the double linked list template class with the first interpolation method, tail interpolation, left to insert th
Link
- C++实现的一个链表模板类. 单向链表-C++ Achieve a linked list template class. A one-way linked list
T_List
- 单向链表模板程序,可以在VC++下直接编译执行-TList
SLinklist
- 静态链表,c++语言描述,数据结构示范,模板类-staticlinnkedlist
list-and-Queue-template
- 自己封装的队列和链表模板类,使用方便!使用VC++开发工具.-Package their own queue and linked list template class, easy to use! Using VC++ development tools.
lianbiao
- 适合初学者的用VC++编写的链表模板源码-Suitable for beginners to use VC++ to prepare the list template source
C++链表模板
- 编写了一个链表的模板,方便需要的人移植调用等,简单易懂(Write a list of templates, convenient for people to transplant, call, etc., easy to understand)
DSA_CPP
- 使用C++实现向量,链表,二叉树类,对应有相应的测试(Using C++ implementation vector, linked list, two fork tree class, corresponding to the corresponding test)
linkQueue
- doc版本的链表模版 可以用来进行数据结构编程(doc version of linked list template)
第12章03日期类应用_日期链表_DateLink
- 一个单向类模板的综合应用,实现日期类的功能(The integrated application of one-way class templates can realize the perpetual calendar class)
linkedlist
- 这是一个比较基础的链表模板设计,涵盖了大部分通用的链表操作(This is a more basic chain table template design that covers most of the common linked list operations)
student_management_system
- 基于自写双向循环链表的学生管理系统。 其中链表是模板类,有丰富的功能。 指令1: 添加若干位学生(学号 成绩),以0结束。 指令2: 删除第1位指定学号的学生。 指令3: 删除所有指定成绩的学生。 指令4: 显示第1位指定学号的学生的成绩。 指令5: 显示所有指定成绩的学生的学号。 指令6: 显示所有学生信息。 指令-1: 退出。 如果你是因为作业搜索到本代码,学长真心建议你更改一下List部分的代码。小心助教发现。(Student mana
线性表
- 1.顺序表的验证 (1)编写测试函数,对顺序表类模板用2种简单类型的数据(int ,char,double,float等)进行测试验证。 (2)定义一个结构体,描述学生信息。学生信息包括:学号、姓名、性别、班级和电话号码等。用描述学生信息的结构体作为线性表的数据元素类型测试顺序表。 (3)在顺序表类模板中增加成员函数max()和min(),它们分别返回顺序表中元素值最大的数据元素序号。 2.单链表的验证 (1)编写测试函数,对带头结点的单链表类模板用2种简单类型的数