CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 数据结构 线性表

搜索资源列表

  1. sequenlist

    0下载:
  2. 线性表(顺序表)的创建,插入,删除操作,在vc6.0huoc-free可实现。 对于初学数据结构者,该程序是综合理解线性表最好的程序。-Linear form (order form) the creation, insertion, deletion, in vc6.0huoc-free can be realized. Data structure for the beginner, and the program is a comprehensive understanding of
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1393
    • 提供者:finn
  1. HB

    0下载:
  2. 任务:通过此系统可以实现如下功能: 录入: 可以录入航班情况(数据必须存储在一个外部文件中,数据结构采用线性表,并以链式存储结构表示)。 查询: 可以查询某个航线的情况(如,输入航班号,查询起降时间,起飞抵达城市,航班票价,票价折扣,确定航班是否满仓); 可以输入起飞抵达城市,查询飞机航班情况; 订票:(订票情况可以存在一个外部文件中) 可以订票,如果该航班已经无票,可以提供相关可选择航班; 退票: 可退票,退票后修改相关数据文件; 客户资料
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:3129
    • 提供者:迟浩东
  1. 33753158guofu11111111111111

    0下载:
  2. 严崴敏的数据结构实验线形表的合并的C程序,包括线性表的 插入,排序操作-Yan Wei-min experimental linear data structure of the C form of the merger process, including the insertion of a linear table, sorting operation
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:1296
    • 提供者:蓝蔻
  1. shuzhifenxi3

    0下载:
  2. 实验题目:曲线拟合的最小二乘法 相关知识:已知C[a,b]中函数f(x)的一组实验数据(xi,yi)(i=0,1,…,m),其中yi=f(xi)。设 是C[a,b]上线性无关函数族。在 中找函数f(x) 曲线拟合的最小二乘解 ,其法方程(组)为: 其中, k=0,1,…,n 特别是,求函数f(x) 曲线拟合的线性最小二乘解 的计算公式为: 数据结构:两个一维数组或一个二维数组 算法设计:(略) 编写代码:(略) 实验用例: 已知函数y
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:947
    • 提供者:张涛
  1. shuzhifenxi5

    1下载:
  2. 实验题目:Romberg求积公式 相关知识:用两个相邻的近似公式(其中后一个公式是由前一个公式的分半得到的)的线性组合而得到更好的近似公式的方法,就是近代电子计算机上常用的Romberg求积方法,也叫逐次分半加速(收敛)法。 设以 表示二分k次后求得的梯形值,且以 表示序列{ }的j次加速值。Romberg求积公式的T表如下 k h … 0 b-a … 1 … 2
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:811
    • 提供者:张涛
  1. shujujiegou

    0下载:
  2. 数据结构的线性表及其应用,树和二叉树的建立和应用,查找和排序-The linear table data structure and its application, trees and tree establishment and applications, search and sort
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:5065
    • 提供者:xin
  1. dierzhangxianxinbiaoer

    0下载:
  2. 线性表顺序存储结构特点:逻辑关系上相邻的两个元素在物理存储位置上也相邻; 优点:可以随机存取表中任一元素,方便快捷; 缺点:在插入或删除某一元素时,需要移动大量元素 需要预先确定数据元素的最大个数。-Linear sequence table storage structure characteristics: the logic of the relationship between the two adjacent elements in the physical stora
  3. 所属分类:Data structs

    • 发布日期:2016-01-27
    • 文件大小:35266
    • 提供者:周小强
  1. xianxing

    0下载:
  2. 4. 假设有两个按数据元素值非递减有序排列的线性表A和B,均以单链表作为存储结构。编写算法将A表和B表归并成一个按元素值递减有序(即非递增有序,允许值相同)排列的线性表C。-4. Assuming there are two data elements according to the value of non-decreasing in an orderly array of linear forms A and B, are single-linked list as a storage s
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:1098
    • 提供者:蕾蕾
  1. 2

    0下载:
  2. 配合严蔚敏的数据结构的辅导书,内有书中程序的代码实现——高一凡所著的数据结构算法解析的第二章线性表。-YAN Wei-Min with the data structure of the counseling book, there are procedures code book- written by high and one where the data structure algorithm to resolve the second chapter of the linear tabl
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:23231
    • 提供者:wujiawei
  1. 1079113203

    0下载:
  2. 功能:输入一页文字,程序可以统计出文字、数字、空格的个数。 静态存储一页文章,每行最多不超过80个字符,共N行;要求(1)分别统计出其中英文字母数和空格数及整篇文章总字数;(2)统计某一字符串在文章中出现的次数,并输出该次数;(3)删除某一子串,并将后面的字符前移。 存储结构使用线性表,分别用几个子函数实现相应的功能; 输入数据的形式和范围:可以输入大写、小写的英文字母、任何数字及标点符号。 输出形式:(1)分行输出用户输入的各行字符;(2)分4行输出"全部字母数"、"数
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-29
    • 文件大小:49275
    • 提供者:迟浩东
  1. lxs

    0下载:
  2. 本程序是用TC编写,要实现的功能:输入一页文字,程序可以统计出文字、数字、空格的个数。 静态存储一页文章,每行最多不超过80 个字符,共N 行; 要求:(1)分别统计出其中英文字母数和空格数及整篇文章总字数; (2)统计某一字符串在文章中出现的次数,并输出该次数; (3)删除某一子串,并将后面的字符前移。 存储结构使用线性表,分别用几个子函数实现相应的功能; 输入数据的形式和范围:可以输入大写、小写的英文字母、任何数字及标点符号。 输出形式:(1)分行输出用户输入的各行字符; (2)分4 行输出
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-25
    • 文件大小:5609
    • 提供者:吴小用
  1. wenzhang

    1下载:
  2. 文章编辑,一定是对的,主要包括1. 输入一页文字,程序可以统计出文字、数字、空格的个数。静态存储一页文 章,每行最多不超过80个字符,共N行; 1) 分别统计出其中英文字母数和空格数及整篇文章总字数; 2) 统计某一字符串在文章中出现的次数,并输出该次数; 3) 删除某一子串,并将后面的字符前移。 存储结构使用线性表,分别用几个子函数实现相应的功能;输入数据的形式和范围:可以输入大写、小写的英文字母、任何数字及标点符号。 -Articles editor, will de
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:2364
    • 提供者:gftygh
  1. DataStructurePart1

    0下载:
  2. 学校老师上课的讲义和习题解答。数据结构的线性表部分。-School teachers class lectures and exercises to answer. Data structure part of the linear form.
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:389156
    • 提供者:心心
  1. set

    0下载:
  2. 这个是一个集合类的程序,使用了数据结构中的线性表,有插入 删除等实现函数。-This is a collections of procedures, the use of the data structure in linear form, such as implementation has inserted delete function.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:660
    • 提供者:zongboliu
  1. linearformoftheapplication

    0下载:
  2. 数据结构中C++实现的线性表的应用,单链表中插入和删除-Data structure in C++ implementation of the linear form of the application, a single list in the insert and delete
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:824
    • 提供者:luo
  1. shuangxianglianbiao

    0下载:
  2. 实现双向链表所存储线性表的各种操作。要求提供数据的插入、删除、查找、两个数据交换、求所有数据平均值、最大值、最小值的操作。先利用随机函数产生100个随机整数,建立线性表的存储结构,然后完成上述的功能。分析程序的时间、空间复杂度。-Achieve bi-directional linear list stored various operating table. Request for data insert, delete, search, both for data exchange, and
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2159
    • 提供者:黄啸尘
  1. linear_listANDaccessfile

    0下载:
  2. 简单功能,通过线性表结构处理数据,并把数据随时保存到磁盘文件。-Easy functionality, deal with table structure through the linear data and the data saved to disk files at any time.
  3. 所属分类:Console

    • 发布日期:2017-04-26
    • 文件大小:217563
    • 提供者:黄华
  1. SqList_insert

    0下载:
  2. 用VC++实现数据结构中:在指定的位置上,线性表的插入 -Using VC++ implementation: ~ linear table data structure insertion
  3. 所属分类:Data structs

    • 发布日期:2017-04-29
    • 文件大小:7692
    • 提供者:huang20
  1. data_structure_and_algorithm

    0下载:
  2. 《数据结构与算法入门导学》 第一章 概论 第二章 线性表 第三章 栈和队列 第四章 串 第五章 多维数组和广义 表 第六章 树 第七章 图 第八章 排序 第九章 查找 第十章 文件-" Introduction to Data Structures and Algorithm Study I." Introduction to Chapter II Chapter III Chapter linear stack and queue Chapter IV Chapter V
  3. 所属分类:Data structs

    • 发布日期:2017-04-28
    • 文件大小:417810
    • 提供者:lzm
  1. DataStruct

    0下载:
  2. 数据结构实验程序 线性表 栈和队列 二叉树 图 查找 内部排序-Experimental procedures for linear data structures stack and queue table tree diagram to find the internal order
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:329168
    • 提供者:liuzhou
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 26 »
搜珍网 www.dssz.com