搜索资源列表
libo
- 线性表的使用 如何建立线性表,同时进行线性表的删除,插入,查询等操作。-linear table how to establish the use of the linear scale, while the linear scale deletion, insertion and search operation.
SeqListcode
- 顺序表的源程序,顺序表的基本操作实现实验 ,实验要求是:数据元素类型ElemType取整型int。按照顺序存储结构实现如下算法(各算法边界条件和返回结果适当给出): 1)创建任意整数线性表(即线性表的元素值随机在键盘上输入),长度限定在25之内; 2)打印(遍历)该线性表(依次打印出表中元素值); 3)在线性表中查找第i个元素,并返回其值; 4)在线性表中第i个元素之前插入一已知元素; 5)在线性表中删除第i个元素; 6)求线性表中所有元素值(整数)之和;
linklist
- 链式结构的线性表,线性表的生成,插入,删除,定位,查找-/ /* PROGRAM: chain structure of the linear table*//* CONTENT: generate, insert, delete, locate, find*
linkqueue
- 链式队列是一种特殊的线性表,它只允许在表的前端(front)进行删除操作,而在表的后端(rear)进行插入操作。进行插入操作的端称为队尾,进行删除操作的端称为队头。队列中没有元素时,称为空队列。一般队列的存储结构是顺序存储,当队列的存储结构是链式存储结构时(即队列中每个元素都包含一个指向其后继的指针,最后一个元素指针为null),就是链式队列,和链栈同理。-A queue is a special kind of linear form, it only allows the front end
linklist
- 链表是一种物理存储单元上非连续、非顺序的存储结构,数据元素的逻辑顺序是通过链表中的指针链接次序实现的。链表由一系列结点(链表中每一个元素称为结点)组成,结点可以在运行时动态生成。每个结点包括两个部分:一个是存储数据元素的数据域,另一个是存储下一个结点地址的指针域。 相比于线性表顺序结构,链表比较方便插入和删除操作。-A linked list is a physical storage unit discontinuous, non-sequential storage structure, t
linkstack
- 链表实现的栈,并包含相应的栈操作。栈(stack)是一种特殊的线性表。其特殊性在于限定插入和删 除数据元素的操作只能在线性表的一端进行。-Linked list implementation of the stack and the stack contains the corresponding operation. Stack (stack) is a special linear form. Its uniqueness lies in defining insert and delete
build-empty-linear-form
- 数据结构空线性表的建立,并附上基本功能:初始化、插入、删除(严格)-Build data structures empty linear form, attach basic functions: initialization, insert, delete (strict)
LinkList
- 该程序在C++环境下利用链式线性表演示如何存储多个学生记录,以及节点的插入,删除功能.-Create LinkList,DeleteRecord,Insert/Delete Node
The-text-string-encryption
- 通过构造线性表,以对线性表的遍历插入提取删除元素等操作实现对文本串的加密-By constructing a linear form, based on the linear traversal table insertion extraction operations to remove elements to realize text string encryption
Sqlist
- 数据结构中顺序线性表的实现,及查找、插入、删除-data structure
source
- 利用数据结构中的线性表构建一个学生管理系统,实现对数据的插入,打印,以文件形式输出结果。- Using the data structure to build a linear form student management system, insert the data, print, and output file format.