搜索资源列表
KoSMSGateWay_Pro36
- 使用单链表实现本程序要求,单链表每个节点存储一个学生的信息。 创建一个链表类(List),链表类可实现如下功能: 创建链表,插入节点,删除节点,编辑节点,显示节点,保存链表信息等功能,读入数据文件等功能(详细说明请查看源代码)。 创建一个操作类(Operater),操作类实现如下功能: 显示菜单,操作链表。-use a single linked list to achieve the procedural requirements of each node-Chain stor
sf22带头结点的单链表 C++ Source File
- sf22带头结点的单链表,可以删除添加数据。C-sf22 lead single node chain and the addition of data can be deleted. C
2.19
- 题目:已知线形表中的元素以值递增有序排列,单链表做存储结构,编写删除表中所有大于mink且小于maxk的元素-topics : known linear elements in the table to increase the value of orderly, single-linked list as storage structures, Table prepared to delete all but less than mink elements maxk
2.29
- A,B,C三个单链表做存储结构的递增有序链表现对A表做以下操作:删除既在B表又在C表中出现的元素-A, B, C 3-Chain store done in an orderly structure of the increased performance of the A chain table do the following : both delete Table B C in the table of elements
shujujiegoudanlianbiao
- 输入一系列递减顺序的整数(100,50,40,30……),以0标志结束,将这些数作为data域逆序建立一个单链表;从键盘输入一个整数X,将X插入到此单链表中并保持单链表data域的值递增关系,输出此时单链表各结点data域的值;从键盘输入一个整数Y,若Y值在单链表中存在,则删除data域的值为Y的结点(注单链表中没有data域值相同的结点),并输出此时单链表各结点data域的值。-importation of a series of descending order of the integer
xiaoliang10101danlianbiao
- 单链表的操作(查找、删除、排序和插入). -single-chain operations (to identify, delete, sort and insertion).
DLB
- 对单链表中的数据进行插入、修改和删除操作
list
- 建立一个单链表并对链表进行插入、删除操作 插入运算 在头指针为head的链表中,在值为a的结点前面插入一个值为x的结点。若链表为空
2
- 实现单链表的基本操作,包括链表的建立,释放,查找,插入,删除,有输入输出。
单链表基于线性表的实现
- 1. 基于链表实现线性表的以下基本操作: interface ILinarList<T> { void InsertNode(T a); //在表末尾插入元素 void InsertNode(T a, int i); //在指定的位置i插入元素 void DeleteNode(int i); //删除操作 T SearchNode(int i); //查找表元素 int SearchNode(T value); //定
lianbiao.rar
- 假设学生信息含有:学号、姓名、成绩。要求用单链表表示一个班的学生信息,并能用菜单形式实现如下功能(菜单要能重复使用): 1、建立单链表 2、输出单链表 3、查找单链表 4、插入单链表 5、删除单链表 6、更新单链表 7、逆置单链表 0、退出系统 ,The assumption that contain student information: Student ID, name, accomplishments. Require a single list that stude
1.2.1
- 链表操作 1 运行时输入数据,创建一个单链表 2 可在单链表的任意位置插入新结点 3 可删除单链表的任意一个结点 4 在单链表中查找所有值等于x的结点 5 输出单链表-List a run-time operation to enter data, create a single-chain 2 can be any list in a single location to insert a new node 3 to delete the list of any
ds2
- 本次课程设计是一个简单链表综合算法设计,以职工的信息作为结构体,其中包括职工号、姓名、部门号和工资4个数据。在链表中涉及到插入、修改、删除、查找和排序等操作。-The curriculum design is a simple algorithm for the design of the integrated list to the information as a trade union structure, including staff number, name, department
EnhancedLinkedList
- 用C++实现的加强版的单链表,包括插入、删除、查找等功能。-The Implemention of EnhancedLinkedList
link
- 实现链表的基本功能,包括单链表、双链表的基本操作,增加、删除、排序、插入等。(Basic function realization of linked list)
数据结构-单链表-实验报告
- 1.实验目的及要求 1.1实验目的: (1)掌握线性表的顺序存储结构; (2)验证单链表及其基本操作的实现; (3)进一步理解算法与程序的关系,能够将单链表算法转换为对应的程序。 1.2 实验要求: (1)用头插法(或尾插法)建立带头结点的单链表; (2)对已建立的单链表实现插入、删除、查找等基本操作。(1 the purpose and requirements of the experiment 1.1 the purpose of the experiment:
新建文件夹
- 删除单链表中多余元素, 采用c语言的编程环境。(Single chain table exercises delete redundant data elements in a single chat table)
删除多余结点。合并链表
- 合并链表,删除多余节点,数据结构中的单链表应用(Merge the list, delete the excess node)
parse
- c 实现单链表 生成 删除,插入,翻转等基本链表操作(C realizes single chain table generation, deletion, insertion, flipping and other basic chain operations.)
sLinkList
- 项目任务 在单链表类中增加一个功能erase(x, y), 删除表中所有值在 [x, y] 之间的结点。假设链表中结点数值类型是整形,要求编程返回删除相应结点后的链表长度和链表元素。 输入描述 第一行输入链表List的结点元素值,元素之间用空格间隔,且均为int类型; 第二行输入为x和y,分别表示需要删除结点元素的最小值和最大值。 输出描述 第一行输出删除相应结点后链表的长度; 第二行输出删除相应结点后链表的所有元素,元素之间用空格间隔。若无剩余元素,输出null。(Project task