搜索资源列表
xianxingbiao
- 实习题 [问题描述] 1. 设顺序表中的数据元素递增有序,将插入到顺序表的适当位置上,是该表仍然有序。 [输入] 初始顺序表,插入字符。 [输出] 插入x后线性表的结果 [存储结构] 采用顺序存储结构 [算法的基本思想] 建立一个递增顺序表,插入一个数值并移动元素,使其仍然有序。 程序如下: #include \"iostream.h\" #include <malloc.h> #define LIST_INTI_SIZE 1
linner
- 完整的一份实验报告 1. 利作链表的插入运算建立线性链表,然后利用链表的查找、删除、计数、输出等运算反复实现链表的这些操作(插入、删除、查找、计数、输出单独写成函数的形式),并能在屏幕上输出操作前后的结果。 2. 利用线性链表实现对用户输入的一组数据进行插入排序。
datas
- 各线性表采用单链表作为存储结构; 题中任一线性表中的元素值可以相同。 测试用例自己设计。
c++
- 在线性表的实现中增加一个成员函数,实现对表中元素置逆的操作(设原链表为a1,a2,...,an 则置逆后的序列为an,...,a2,a1)。对于具有n个元素的线性表,你的算法的运行时间应为O(n),空间消耗应为O(1). 注:有对时间和空间分析的说明
Flight
- 一个航空客运订票系统。用C++实现。系统能实现的操作和功能:①查询航线,②承办订票业务③承办退票业务。主要用线性表实现。-An air passenger booking system. Using C++ to achieve. System to achieve the operations and functions: ① query route, ② ③ contractors contractors refund booking business operations. Linear
wangrong1
- 线性表运算,进行插入、删除、返回长度、判空、等的10多种操作-Linear table operations, insertion, deletion, back length, sub-space, and so on more than 10 kinds of operations
poly
- 数据结构中,线性表的应用,利用单链表存储一元多项式,并实现单链表表示与相加操作-The data structure, the linear form of the application, the use of a single linked list is stored one dollar polynomial, and to achieve a single linked list representation and the sum of operating
shujujiegou
- 主要介绍数据结构,是对c语言学习的加强,主要介绍了排序,线性表,队列,数组,广义表,书和二叉树,查找,图等类容。-Introduces the data structure is the c language to enhance learning, introduces the sort, linear tables, queues, arrays, generalized table, books and binary tree, locate, map, and the like capa
shujujiegou_C
- 介绍了数据结构的基本概念、线性表、链接表、数组和广义表、树、图、查找和排序等,每章用大量的实例和图表来说明基本概念和方法.同时采用c语言作为算法的描述语言,算法也尽可能地少用抽象定义,而更多的是给出具体算法,并力求算法更接近于实际应用,使读者能更快地提高编程能力。-The book gives the basic concepts of data structures, linear tables, linked tables, arrays, and generalized table, tr
Linear-table-design
- 实验一是线性表的设计与实现程序;实验二是栈和队列的应用程序;实验三是树型结构的应用程序;-The first experiment, the linear table design and implementation of procedures experimental application of stacks and queues In Experiment 3, the tree structure of the application
cangku
- 题目10、 仓库管理系统(线性表应用) [问题描述] 建立一个仓库管理程序,可以按顺序和货物名称查询仓库存储情况,也可以增加或删除货物以及建立新的仓库存储系统。 -Subject 10, Warehouse Management System (linear form application) [Problem Descr iption] build a warehouse management program, you can query sequence and type of
include
- 数据结构(c)线性表的设计与实现,用顺序表将两个集合进行合并,并存入第三个集合中。-Design and Implementation of the data structure (c) linear table, order table two collections merged and stored in the third collection.
shujujiegou
- 数据结构:数据结构于算法实验是计算机类本科学生计算机软件知识重要的实验环节,它将使学生从实践上学会用高级语言程序设计、实现复杂的数据结构,为大型软件设计奠定基础。本实验以某种线性表的创建与访问算法设计作为实验内容,举一反三,全面、深刻掌握线性结构的实现方法,培养解决问题的能力。-English Version
data-structure
- 线性结构是最常用、最简单的一种数据结构。而线性表是一种典型的线性结构,其基本特点是线性表中的数据元素是有序且有限-Is the most common linear structure, a data structure simple. The linear table is a typical linear structure, its basic features are linear data in the table is ordered and finite element
WQL1
- 1、 某软件公司大约有30名员工,每名员工有姓名、工号、职务等属性,每年都有员工离职和入职。 把所有员工按照顺序存储结构建立一个线性表,建立离职和入职函数,当有员工离职或入职时,修改线性表,并且打印最新的员工名单。 -1, a software company about 30 employees, each employee has a name, job number, position and other attributes, and employee turnover ever
The-linear-table-operation
- 线性表操作,实现线性表简单的插入,删除,遍历,排序。-The linear table operation
111
- 线性表的建立与基本操作源代码,线性表的基本运算在两种存储结构上的实现。 -Linear tables set up with the basic operation of the source code
shiyan
- 数据结构实验一,线性表的顺序表示与链式表示-A data structure experiment, the order of the linear table representation and chain said
数据结构上机实验——二叉树
- 根据二叉树的抽象数据类型的定义,使用二叉链表实现一个二叉树。 二叉树的基本功能: 1、二叉树的建立 2、前序遍历二叉树 3、中序遍历二叉树 4、后序遍历二叉树 5、按层序遍历二叉树 6、求二叉树的深度 7、求指定结点到根的路径 8、二叉树的销毁 9、其他:自定义操作 编写测试main()函数测试线性表的正确性
链表
- 数据结构链表,包括线性表的基础编程,适用于C语言。(Data structure chain table)