搜索资源列表
成绩管理20034581赵传仕
- 学生成绩管理系统 C语言 1、掌握结构化设计方法。 2、了解大型软件的设计技术 3、在实际应用背景下灵活运用线性表的顺序存储结构和链式存储结构。 4、灵活运用线性表上的各种基本运算,完成题目需求。 5、在实例中运用排序与查找算法。-student performance management system a C language, master structural design methods. Two, understand th
(类)设计并实现一个具有并,交差等功能的集合类
- (类)设计并实现一个具有并,交差等功能的集合类 (假设采用顺序存储结构)。编写菜单驱动的C++程序, 利用该类实现集合的并,交差等运算。 -() design and implementation, and have a, perfunctory function of the collection classes (assuming sequential storage structure). Prepare a m
多维数组-矩阵的压缩存储- 稀疏矩阵(一)
- 稀疏矩阵 设矩阵A mn 中有s个非零元素,若s远远小于矩阵元素的总数(即s<<m×n),则称A为稀疏矩阵。 1、稀疏矩阵的压缩存储 为了节省存储单元,可只存储非零元素。由于非零元素的分布一般是没有规律的,因此在存储非零元素的同时,还必须存储非零 元素所在的行号、列号,才能迅速确定一个非零元素是矩阵中的哪一个元素。稀疏矩阵的压缩存储会失去随机存取功能。 其
顺序存储结构
- 线形表的顺序存储结构算法 VC++6.0下开发~!-linear sequence storage structure VC + +6.0 algorithm developed ~!
线性表的顺序存储实现
- 线性表的顺序存储实现-linear sequence table to achieve storage
顺序存储结构
- 线形表的顺序存储结构算法 VC++6.0下开发~!-linear sequence storage structure VC++6.0 algorithm developed ~!
线性表的顺序存储实现
- 线性表的顺序存储实现-linear sequence table to achieve storage
顺序表的就地逆置
- 试写一算法,实现顺序表的就地逆置,即利用原表的存储空间将线性表(a1,a2,...,an)逆置为(an,an-1,...,a1).-try to write an algorithm to achieve the order form in situ reverse home, namely the use of the original table of linear storage space (a1, a2 ,..., an) i
文件与复制合并
- 本程序从若干个原始文件合并成的文件中恢复出其中一个或全部原始文件。合并文件中先顺序存储各原始文件,然后顺序存储各原始文件的控制信息,即文件名,文件长度和在合并文件中的位置。-this program from a number of original documents into the document resume out one or all of the original documents. The merger docume
多维数组-矩阵的压缩存储- 稀疏矩阵(一)
- 稀疏矩阵 设矩阵A mn 中有s个非零元素,若s远远小于矩阵元素的总数(即s<<m×n),则称A为稀疏矩阵。 1、稀疏矩阵的压缩存储 为了节省存储单元,可只存储非零元素。由于非零元素的分布一般是没有规律的,因此在存储非零元素的同时,还必须存储非零 元素所在的行号、列号,才能迅速确定一个非零元素是矩阵中的哪一个元素。稀疏矩阵的压缩存储会失去随机存取功能。 其
queue
- 队列,1、 掌握队列的顺序存储结构和“假溢出”的处理方法 2、 设计用标志位解决“假溢出”问题的顺序队列 -cohort, 1, the master queue storage structure and sequence "false spillover" of the two treatment methods. Design signs spaces, "false spillover&qu
2)
- 一、 实验目的 1、 掌握使用Turbo C或VC上机编写、调试数据结构程序的基本方法。 2、 掌握线性表的基本操作:插入、删除、查找等操作在顺序存储结构和链接存储结构上的算法及其实现方法。 二、 实验要求 1、 认真阅读和掌握本实验的程序。 2、 上机运行本程序,测试所有功能点。 3、 结合源程序分析运行结果。 4、 按照你对线性表的操作需要,加入新功能(例如合并表)并重新改写主程序。
file1
- 线性表的顺序存储表示(结构)及实现 创建一个顺序表(数据自拟); 在顺序表的指定位置插入一个元素; 在顺序表的指定位置删除一个元素; 将两个有序顺序表合并成一个新的有序顺序表 -Linear sequence of storage, said table (structure) and realize the creation of a chronological table (data from the propo
顺序表
- 学生成绩单的线性表顺序存储 顺序表 数据结构(Student transcr ipts are linear tables, sequentially stored, sequential tables, and data structures)
线性表的存储结构
- 本程序实现了线性表的顺序存储结构,可利用率高,界面清晰。(This program implements a linear table of the sequential storage structure, high utilization, clear interface.)
顺序表
- 顺序表是在计算机内存中以数组的形式保存的线性表,是指用一组地址连续的存储单元依次存储数据元素的线性结构。线性表采用顺序存储的方式存储就称之为顺序表。顺序表是将表中的结点依次存放在计算机内存中一组地址连续的存储单元中。本程序设计顺序表的创建销毁插入遍历等操作。(A sequential table is a linear list stored in an array of memory in a computer memory. It
SeqBiTree
- 顺序存储结构下的二叉树创建和初始化,二叉树的顺序存储表示结构定义(Definition of sequential storage representation structure for two binary tree)
栈的顺序存储与操作
- 关于数据结构中栈的存储方式及操作内含简单的源代码(The storage mode and operation of the stack in the data structure)
dm02_线性表顺序存储设计与实现
- 数据结构(C语言版)线性表的顺序存储API函数实现代码(The API function realization code of the linear table of data structure)
第3章线性表
- 基于c语言的线性表代码,包含线性表的顺序存储、链式存储、静态链表(Linear table code based on C language, including sequential storage, chain storage, and static list of linear tables.)