搜索资源列表
libo
- 线性表的使用 如何建立线性表,同时进行线性表的删除,插入,查询等操作。-linear table how to establish the use of the linear scale, while the linear scale deletion, insertion and search operation.
sjjg_suanfaji
- 数据结构及算法C语言实现代码集.有数据结构中的常用算法源码(c语言编写),如图论算法、线性表、栈和队列的及一些常见的计算问题
线性表的应用——仓库管理
- 1) 问题描述:建立一个仓库管理程序,可以按顺序和货物名称查询仓库存储情况,也可以增加或删除货物以及建立新的仓库存储系统。-a) Descr iption of the issue : the establishment of a warehouse management procedures, in accordance with the order for goods and warehouse storage, can also add or remove the goods and th
nn
- 模板的应用-对线性表操作 c++的实验报告 编译过-c++
shunxuxianxingbiaoywc
- 只要就是用来实现顺序线性表的功能,用c++语言实现的,是比较精简的数据结构。-shixian shunxuxianxingbiao de gongneng
SeqListcode
- 顺序表的源程序,顺序表的基本操作实现实验 ,实验要求是:数据元素类型ElemType取整型int。按照顺序存储结构实现如下算法(各算法边界条件和返回结果适当给出): 1)创建任意整数线性表(即线性表的元素值随机在键盘上输入),长度限定在25之内; 2)打印(遍历)该线性表(依次打印出表中元素值); 3)在线性表中查找第i个元素,并返回其值; 4)在线性表中第i个元素之前插入一已知元素; 5)在线性表中删除第i个元素; 6)求线性表中所有元素值(整数)之和;
LINKLIST
- 数据结构算法程序,怎么样实现线性表的操作与应用-Data structure algorithm procedures How the operation and application of realizing Linear table!!!!!!
2
- 有两个按元素值递增次序排列的线性表,均以单链表形式存储。请编写算法将这两个单链表归并为一个按元素值递减次序排列的单链表,并要求利用原来两个单链表的结点存放归并后的单链表-There are two elements of value according to the ascending order of the linear form, are stored as single linked list. Please write algorithms merge the two into a s
linklist
- 链式结构的线性表,线性表的生成,插入,删除,定位,查找-/ /* PROGRAM: chain structure of the linear table*//* CONTENT: generate, insert, delete, locate, find*
List
- 线性表,C++语言实现,殷人昆数据结构实验-C++ language implementation, Yan Renkun data structure experiments
sxcz
- 顺序查找的基本思想是:从表的一端开始,顺序扫描线性表,依次将扫描到的结点、关键字和给定值k相比较,若当扫描到的结点与k相等,则查找成功;若扫描结束后仍未找到等于k的结点,则查找失败。-The basic idea of sequential search: start from one end of the table, sequential scanning linear form, and in turn will scan to the node, keywor
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
seqlist
- 结构线性表是一种常用的数据结构,以下介绍线性表及其顺序存储,并对栈和队列及它们的顺序实现给出了详细的设计描述。-Linear table structure is a common data structure, the following describes the linear form and stored in order, and stacks and queues and their sequential implementation gives a detailed design
Data-Structure
- 通用数据结构入门书籍,线性表,栈,队列等...及C语言的代码实现。-Data Structure book and source code
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
数据结构课设小题线性表的链式存储
- 链表是一种物理存储单元上非连续、非顺序的存储结构,数据元素的逻辑顺序是通过链表中的指针链接次序实现的。链表由一系列结点(链表中每一个元素称为结点)组成,结点可以在运行时动态生成。每个结点包括两个部分:一个是存储数据元素的数据域,另一个是存储下一个结点地址的指针域。(Linked list is a discontinuous and non sequential storage structure on physical storage unit. The logical order of da
链表线性表
- 严蔚敏版数据结构第二章线性链表的基本功能函数的C语言的实现,以及书上算法2.1,2.2,2.3的具体实现(Yan Wei Min version of data structure second chapters, the realization of C function of basic function function of linear list, and the concrete realization of algorithm 2.1, 2.2, 2.3 in book.)