Welcome![Sign In][Sign Up]
Location:
Search - 线性表

Search list

[Data structs链表的有序表

Description: 有序线性表的元素是按值从大到小顺序排列的。本题要求用带表头节点的单链表实现有序线性表用户界面要求设计为菜单方式。程序运行后,显示如下功能菜单; 1 置表空 2插入 3删除 4查找 5输入 0退出 用户没键入一个选择数字,程序就执行相应的功能并再次显示菜单,直至末次用户选择了“0”退出为止
Platform: | Size: 4620 | Author: 735338750@qq.com | Hits:

[Other数据结构_线性表&单链表_详细c++源代码

Description: 数据结构_线性表&单链表_详细源代码 包含线性表和单链表的建立、插入、删除、排序等简单应用。 c++版
Platform: | Size: 5765 | Author: missmylady | Hits:

[Data structs掌握线性表的结构特点

Description: 。 掌握线性表的基本操作:初始化,插入,删除,查找,判空,求线性表长度等运算在顺序存储结构和链式存储结构上的实现。 通过本章实验帮助学生加深对C语言的使用(特别是函数的参数调用、指针类型的应用)。
Platform: | Size: 1411 | Author: oiewwang | Hits:

[Windows Develop线性表

Description: 实现线性表的源程序-Linear List of the source
Platform: | Size: 4096 | Author: 代勇 | Hits:

[Mathimatics-Numerical algorithms第二章 线性表习题答案

Description: 第二章 线性表习题答案-The answer of linklis
Platform: | Size: 9216 | Author: 陈如 | Hits:

[Other线性表的顺序存储实现

Description: 线性表的顺序存储实现-linear sequence table to achieve storage
Platform: | Size: 93184 | Author: 哈哈 | Hits:

[Data structs线性表数据结构算法

Description: 线性表常用算法集合,含所有线性表基本的算法,与吴伟民编的数据结构书完全配套,用TC实现,经过运行。-linear algorithm commonly used pool table, table containing all the basic linear algorithms, and Xiulan WU Weimin series of the data structure was fully complementary with TC realization, after running.
Platform: | Size: 38912 | Author: 李雷 | Hits:

[Data structs线性表元素删除

Description: 线性表元素删除运算,删除线性表L中第i个位置上的元素-linear elements to delete Table Operational delete Table L linear section i positions on the elements
Platform: | Size: 1024 | Author: | Hits:

[CSharp线性表的建立

Description: 线性表的建立,从算法改为vc语言实现编程-linear scale of the establishment, from algorithms to vc Language Programming
Platform: | Size: 612352 | Author: 罗易 | Hits:

[VC/MFC线性表的顺序存储

Description: 线性表的顺序表操作.数据结构C语言版作业的实验.-linear table in the order table operation. Data structure C language version of the experimental operation.
Platform: | Size: 185344 | Author: zyj | Hits:

[VC/MFC线性表

Description: 线性表的建立与删除,关于线性表的一些基本操作!
Platform: | Size: 31232 | Author: lwf4071 | Hits:

[JSP/Java线性表操作

Description: 对线性表的一些操作,有一元多项式求和运算和Josephus环。参考《数据结构(java版)第4版》,内有题目文档。(Some operations on the linear table, there is a unary polynomial summation operations and Josephus ring. Refer to the data structure (Java Edition) Fourth Edition, there are Title documents.)
Platform: | Size: 21504 | Author: 观摩 | Hits:

[Windows Develop线性表的存储结构

Description: 本程序实现了线性表的顺序存储结构,可利用率高,界面清晰。(This program implements a linear table of the sequential storage structure, high utilization, clear interface.)
Platform: | Size: 1247232 | Author: 抹油先生 | Hits:

[DocumentsCH2线性表-PDF

Description: 数据结构线性表顺序表单链表双链表的结构(Data structure linear table)
Platform: | Size: 1094656 | Author: Turf | Hits:

[Windows Develop线性表的实现

Description: 数据结构线性表顺序表c语言的实现,顺序表表示的是用一组地址连续的存储单元依次存储线性表的数据元素,所以顺序结构的实现一般采用数组的方式来实现,存储空间也采用动态分配的方式。在定义中用一个ElemType * elem表示基地址,int length 表示当前长度,int listsize表示数组的大小。(Linear table data structure to achieve the order form of the C language, the order of the table is expressed by a set of contiguous memory storage unit in order of the linear table data elements, so the realization of sequence structure generally use the array to realize the dynamic allocation of storage space, but also the way. In the definition, a ElemType * elem is used to represent the base address, int length represents the current length, and int listsize denotes the size of the array.)
Platform: | Size: 2048 | Author: 橘子精 | Hits:

[Otherdm02_线性表顺序存储设计与实现

Description: 数据结构(C语言版)线性表的顺序存储API函数实现代码(The API function realization code of the linear table of data structure)
Platform: | Size: 1130496 | Author: qwerfight | Hits:

[Other1004线性表去重

Description: 线性表去重,数据结构作业之线性表去重,用于去除线性表中的相同元素(Linear table weight removal)
Platform: | Size: 13312 | Author: java111 | Hits:

[Other第3章线性表

Description: 基于c语言的线性表代码,包含线性表的顺序存储、链式存储、静态链表(Linear table code based on C language, including sequential storage, chain storage, and static list of linear tables.)
Platform: | Size: 5120 | Author: 二二宝宝 | Hits:

[Data structs线性表

Description: 1.顺序表的验证 (1)编写测试函数,对顺序表类模板用2种简单类型的数据(int ,char,double,float等)进行测试验证。 (2)定义一个结构体,描述学生信息。学生信息包括:学号、姓名、性别、班级和电话号码等。用描述学生信息的结构体作为线性表的数据元素类型测试顺序表。 (3)在顺序表类模板中增加成员函数max()和min(),它们分别返回顺序表中元素值最大的数据元素序号。 2.单链表的验证 (1)编写测试函数,对带头结点的单链表类模板用2种简单类型的数据(int ,char,double,float等)进行测试验证。 (2)定义一个结构体,描述学生信息。学生信息包括:学号、姓名、性别、班级和电话号码等。用描述学生信息的结构体作为线性表的数据元素类型测试带头结点的单链表。 (3)修改带头结点的单链表类模板中的插入函数,插入元素时按元素值从小到大的顺序插入数据元素到链表的适当位置。(1. Verification of Sequence Table (1) Write test functions to test and verify the sequential table template with two simple types of data (int, char, double, float, etc.). (2) Define a structure to describe student information. Student information includes: student number, name, gender, class and telephone number, etc. The structure describing students'information is used as the test sequence table of data element type in linear table. (3) The member functions Max () and min () are added to the class template of the sequence table, which return the ordinal number of the data element with the largest element value in the sequence table, respectively.)
Platform: | Size: 12288 | Author: 咸鱼2333 | Hits:

[Other线性表

Description: 某软件公司年初有n名员工,每名员工有姓名、职务、工号等属性,现在该公司还有共m次操作,分别对应了员工的入职、离职、查询。现在请把所有员工建立一个线性表,建立离职、入职、查询函数,当有员工离职或入职时,修改线性表,并且根据输出格式中的要求输出。(A software company has n employees at the beginning of the year. Each employee has the attributes of name, job, job number, etc. now the company has a total of M operations, which correspond to the entry, resignation and query of employees respectively. Now, please create a linear table for all employees and create resignation, enrollment and query functions. When an employee leaves or enters, modify the linear table and output according to the requirements in the output format.)
Platform: | Size: 1039360 | Author: cynicalz | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net