搜索资源列表
SqList
- 1.实现顺序表的基本操作,包括顺序表的初始化、第i个元素前插入一个新的元素、删除第i个元素、查找某元素、顺序表的销毁。 2.建立并显示含有n个整数的顺序表 3.实现对有序表(非递减)插入一个元素的功能 4.实现两个有序(非递减)表合并生成新的有序表的功能 5.顺序查找顺序表,删除元素e(只删除找到的第一个值为e的元素)。 6.顺序查找顺序表,删除元素e(删除所有值为e的元素)。 -(1) the basic operation of the order of the ta
sequential
- 用C++面向对象语言实现合并两个顺序表的操作,其结果有序,并按照顺序排列显示。-In C++ object-oriented languages in order to achieve merging the two operating tables, the results of an orderly and follow the order shown.
shunxubiaohebing
- 创建两个顺序表,并按非递减有序排列,合并两个顺序表为一个新的非递减有序顺序表-Create two sequence tables, and non-decreasing ordered arrangement of the merger of two sequential table for a new non-decreasing ordered sequence table
shunxubiao-and-lianbiao
- (1).对于顺序存储的线性表,请实现以下功能: 1)实现二路归并排序算法。 2)实现快速排序算法。 3)实现堆排序算法。 4)实现冒泡排序和选择排序算法 (2).已知长度为n的线性表A采用顺序存储结构,请写一时间复杂度为0(n)、空间复杂度为0(1)的算法,该算法删除线性表中所有值为item的数据元素。要求:线性表元素个数n很大,而值为item的数据元素个数很少,要求移动元素个数尽量少;删除后的数组元素与原数组元素不必保持顺序一致。 (3).编写一个主函数,调试
SQL
- 采用顺序存储结构实现线性表,实现线性表合并、求交操作。-Sequential storage structure for linear tables, linear table merge, intersect operation.
LinearList
- 数据结构中的线性表的实现,有顺序表和链表等几种实现方式-Data structure in linear form, sequential, such as tables and lists several ways
Linear-table-sequential-storage-test
- 线性表顺序存储测试,学习如何创建顺序存储的线性表-Linear table sequential storage test, learning how to create sequential storage of linear tables
Hooke
- The elapsed time of Nelder and Mead simplex method seems to be larger than Hooke and Jeeves method but, it reached the solution in just 2 iterations which is remarkably less than the previous method. From Tables 1 and 2 it can be said that the optimi
look-uptable
- 按关键字从小到大顺序输入一组记录构造查找表,并且输出该查找表; 给定一个关键字值,对所构造的查找表分别进行顺序查找和折半查找,输出查找的结果以及查找过程中“比较”操作的执行次数。 -Press the key sequence input small to large lookup table constructed a set of records, and the output of the look-up table Given a key value of the con
CPPds
- C++列,顺序表,散列表,图,树,等常见的数据结构,可以下载去用。-C++ columns, sequential tables, hash tables, graphs, trees, and other common data structures that can be downloaded and used.
sequential tables
- 编写一算法,实现两个顺序表的合并。(说明:将共同拥有的元素只存其一。)(Write an algorithm to achieve the merger of two sequential tables. (Descr iption: only one of the shared elements is stored.))
顺序表
- 学生成绩单的线性表顺序存储 顺序表 数据结构(Student transcr ipts are linear tables, sequentially stored, sequential tables, and data structures)
有序表归并(单链表存放)
- (有序表(顺序储存)合并)假设有两个有序表LA和LB,设计一个算法,将他们合并成一个有序表LC(假设每个有序表中和两个有序表间均不存在重复元素)。要求不破坏原有表LA和LB。((ordered table (sequential storage) merger) assuming a two ordered list of LA and LB, to design an algorithm to merge them into an orderly table LC (assuming each
查找排序
- 数据结构中顺序表的查找排序,包括冒泡排序、直接排序、简单选择排序、希尔排序、快速排序。(Sorting of sequential tables in data structures.include BubbleSort,InsertSort ,SelectSort,ShellSort,HeapSort,QuickSort.)
顺序表
- 学习数据结构的顺序表的操作,并编程用顺序表分别实现两个顺序表中数据的合并,并排列大小。(Learning the operation of the sequence table of data structure, and programming the merging of data in two sequential tables with sequence tables, and arranging the size.)
数据结构-单链表-实验报告
- 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:
第3章线性表
- 基于c语言的线性表代码,包含线性表的顺序存储、链式存储、静态链表(Linear table code based on C language, including sequential storage, chain storage, and static list of linear tables.)