搜索资源列表
实现线性表的链式存储结构
- 1.实现线性表的链式存储结构——线性链表。从文件输入一批整数,建立有序链表(升序),并完成: • 查找一个指定元素 • 插入一个给定元素 • 删除一个指定元素 • 统计链表的长度 • 输出线性链表 • 实现安逆序链表的重建 2.采用链式结构实现任意多项式的存储,求两个多项式的和。 -Linear linked list data structure
dan_lian_biao
- 链式存储结构及应用 1.键盘输入一组元素,尾部插入法建立一个单向链表。 2.在单向链表中删除一个结点。 3.在链表中插入一个元素。 -Structure and application of a chain store. Keyboard input of a group of elements, the end of a one-way linked list insertion method. 2. In the one-way to remove a node lis
danlianbiao
- 1、定义单链表类型并动态创建单链表 2、实现线性表链式存储结构下元素的插入操作 3、实现线性表链式存储结构下元素的删除操作 4、实现线性表链式存储结构下取元素操作 -1, the definition of single-chain type and the dynamic creation of single-chain 2, the realization of a linear chain table storage structure to operate under t
Singlelist
- 单链表的特点;链式存储结构的基本运算;单链表的创建、插入、删除和显示线性表中元素等基本操作。-Single list of characteristics chain store structure, the basic operations the creation of a single linked list, insert, delete, and display the elements in a linear form the basic operations.
two-waylinkedlist
- 双向链表,双向链表存储方式的实现及特点;双向链式存储结构的定义及基本运算;双向链表的创建、插入、删除和显示表中元素等基本操作 -A two-way linked list, doubly linked lists stored in achieving and characteristics two-way chain storage structure, the definition and basic operations two-way linked list creation,
main
- 1.实现线性表的链式存储结构——线性链表。从文件输入一批整数,建立有序链表(升序),并完成: • 查找一个指定元素 • 插入一个给定元素 • 删除一个指定元素 • 统计链表的长度 • 输出线性链表 • 实现安逆序链表的重建 2.采用链式结构实现任意多项式的存储,求两个多项式的和。 -1. The linear form of the linked storage structure- lin
stack
- 栈是限制仅在表的一端插入和删除的线性表,是生活中某些过程的抽象。插入和删除操作的一端称为栈顶,插入操作称作入栈(Push),删除操作称作出栈(Pop)。栈顶元素总是最后进栈的,和最先出栈的;而栈底元素是最先进栈,最后出栈。栈具有后进先出(LIFO)的特性。顺序栈是栈的顺序存储结构的实现。链栈是栈的链式存储结构的实现。-Stack is limited only to one end of the table insert and remove a linear form, is the life
Doubly-linked-.
- 线性表链式存储(双向链表)插入、删除运算 1、预习要求:线性表的插入、删除相关概念及运算,完成线性表元素的插入、删除。 2、实验目的: (1)了解线性表的插入、删除相关概念; (2)理解线性表的插入、删除过程和结构定义; (3)掌握算法转换为程序的过程中的变化。 3、实验内容及要求: (1) 以“一个较完整的程序范例-顺序表”程序框架为框架 (2)双链表结构体为: typedef struct { int num /学号 char
2012.5.23
- 线性表采用链式存储结构:编写程序实现以下功能 1、建立单链表 2、打印单链表 3、在单链表的第i个结点前插入一个新元素,并打印新的单链表 4、删除单链表的第i个结点,并打印新的单链表 -Linear form a chain storage structure: write a program to achieve the following functions 1, the establishment of a single linked list 2,
data-structure-linear-list
- a.输入一组整型元素序列,建立线性表。 b.实现该线性表的遍历。 c.在该线性表中查找某一元素,查找成功显示查找元素,否则显示查找失败。 d.在该线性表中删除或插入指定元素。 实验要求:分别采用线性表的两种存储结构(顺序存储结构、链式存储结构)来实现以上基本操作。 -a. Enter an integer sequence of elements, and to establish a linear table. b. Traversal of the linear tabl
link
- 实验一:链式基本操作的实现 【问题描述】 选择链式存储结构作为线性表的存储结构,设计一个程序实现线性表的基本操作 (包括建立、输出、插入、删除、查找、求表长和链表的逆置功能等) 【实验内容】 一、必做内容 菜单: 1.初始化 2.链表的建立 2.1头插入建链 2.2尾插入建链 3.插入 4.删除 5.查找 6.输出表长(即表中元素个数) 7.链表元素的逆置 8.退出-Experiment: chain
lab4_2
- 2-1以顺序栈作为存储结构 实现顺序栈的入栈运算,出栈运算,并且读取栈顶元素; 2-2以链栈作为存储结构,实现栈上的数据元素的插入运算,删除运算,并读取链栈的栈顶元素; 2-3 以循环队列喂存储结构,实现循环队列的建立,实现循环队列的入队运算,出队运算; 2-4用栈实现括号的匹配问题; 2-5实现汉诺塔问题.; 3-1采用链式存储表示,按给定的先序序列创建二叉树,并输出二叉树。 3-2-1和3-2-2采用二叉链表作为存储结构,建立二叉树,采用递归算法实现二叉树遍历,另外采
linkqueue
- 链式队列是一种特殊的线性表,它只允许在表的前端(front)进行删除操作,而在表的后端(rear)进行插入操作。进行插入操作的端称为队尾,进行删除操作的端称为队头。队列中没有元素时,称为空队列。一般队列的存储结构是顺序存储,当队列的存储结构是链式存储结构时(即队列中每个元素都包含一个指向其后继的指针,最后一个元素指针为null),就是链式队列,和链栈同理。-A queue is a special kind of linear form, it only allows the front end
1
- 实现线性表的链式存储结构—线性链表。 从文件输入一批整数,建立有序链表(升序),并完成: 查找一个指定元素 插入一个给定元素 删除一个指定元素 统计链表的长度 输出线性链表 实现链表的逆序重建-The linear form of chain store structure- linear list. Enter the number of integers from a file, to establish orderly list (ASC), and compl