登录
首页 » 数据结构 » 线性表的实现是数据中最基本、最简单的结构…

线性表的实现是数据中最基本、最简单的结构…

于 2022-03-11 发布 文件大小:9.04 kB
0 171
下载积分: 2 下载次数: 1

代码说明:

线性表的顺序逻辑结构的实现,线性表作为数据结构中的较为简单的结构,但对它实现的理解是进一步学习的关键.-the implementation of liner table is the most basic and simple structure in data stucture,but it is the best way to learn other data structures.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Visual basic + sql server2000学员管理系统原代码
    Visual basic + sql server2000学员管理系统原代码-Visual basic+ sql server2000 student management system source
    2022-12-26 17:50:08下载
    积分:1
  • 迷宫求解问题。程序中已经建好了一个组作为迷宫组。然后进行试探,输出迷宫从起点到终点的路径。...
    迷宫求解问题。程序中已经建好了一个数组作为迷宫数组。然后进行试探,输出迷宫从起点到终点的路径。-Maze solving the problem. The program has been built as a maze of an array of arrays. And then test the output from the beginning to the end of the maze path.
    2022-03-21 00:23:11下载
    积分:1
  • 清华大学习题集答案
    清华大学数据结构习题集答案-QingHua university answer to data structure excise
    2022-03-24 07:29:18下载
    积分:1
  • 摘要  ?  ?      设计时的自动化加快了编码,并保证所有过程都用相同的命名规范和来生成。为了在大型 SQL 项目中尽量提高编码的效率,作者编写了一系
    摘要  ?  ?      设计时的自动化加快了编码,并保证所有过程都用相同的命名规范和结构来生成。为了在大型 SQL 项目中尽量提高编码的效率,作者编写了一系列的设计时(design-time)存储过程,用它们来生成运行时(run-time)存储过程,并一直在工程中使用。最近,作者更新了其存储过程以便使用 SQL Server 2000 的特性,其中包括用户定义函数。本文所及内容涵盖创建并执行这些动态 T-SQL 脚本以使普通的数据库存储过程编码自动化。- Time the abstract design automation sped up the code, and guarantee all processes all use the same naming standard and the structure produce. In order to enhances the encoded efficiency as far as possible in the large-scale SQL project, the author has compiled when a series of designs (design-time) saves the process, produces when the movement with them (run-time) saves the process, and always uses in the project. Recently, the author renewed its memory process in order to use SQL the Server 2,000 characteristics, including user definition function. This article institute and the content cover founds and carries out these dynamic T-SQL script to cause the ordinary database memory process code automation.
    2022-04-12 03:09:38下载
    积分:1
  • 简单的演示,N的大小可以改变的,而且这个程序的速度还可以, 比以前我用递归写的那个快多了.如果N改得太大输出会有问题, 因为我用到gotoxy的,这个程...
    简单的演示,N的大小可以改变的,而且这个程序的速度还可以, 比以前我用递归写的那个快多了.如果N改得太大输出会有问题, 因为我用到gotoxy的,这个程序主要是练一个算法-simple demonstration, N size can be changed, but the rate of this procedure can also, than in the past I used to write a recursive that quicker. If N is too big change in exports, gotoxy because I used, the process is mainly a training algorithm
    2022-03-13 09:29:46下载
    积分:1
  • 这里采用了C++里随机的一个函,通过修改,顺利变成一个在指定范围内随机抽取的函,并且不重复抽取...
    这里采用了C++里随机的一个函数,通过修改,顺利变成一个在指定范围内随机抽取数据的函数,并且不重复抽取-here C. Lane used a random function, through the revision, smoothly into a designated area in random data function, and does not take repeat
    2022-07-21 10:22:23下载
    积分:1
  • 链表实现
    应用背景C语言实现链表...(包含完整注释,使用链表结构可以克服数组链表需要预先知道数据大小的缺点,链表结构可以充分利用计算机内存空间,实现灵活的内存动态管理。但是链表失去了数组随机读取的优点,同时链表由于增加了结点的指针域,空间开销比较大。链表最明显的好处就是,常规数组排列关联项目的方式可能不同于这些数据项目在记忆体或磁盘上顺序,数据的存取往往要在不同的排列顺序中转换。链表允许插入和移除表上任意位置上的节点,但是不允许随机存取)关键技术包含初始化链表函数、检测链表是否为空函数、清空链表函数、查找第i个元素函数、查找与e相同元素函数、在制定位置插入元素函数、删除指定元素函数、获取链表长度函数
    2022-01-26 07:24:05下载
    积分:1
  • a recruitment management system
    一个招聘管理系统-a recruitment management system
    2022-03-02 12:43:29下载
    积分:1
  • 的乘法
    应用背景应用数组 可以实现的算法和解决的问题非常多,这里举 一个非常典型的例子一一大整数 乘怯 。这个例子所采用的方法和思想都非常巧妙  。由于计算机的精度是有限的,因此单纯使 用程序设计语言提供的原子数据类型来完成两个大整数的乘法显然是不切实际的。 关键技术可以考虑 用两个数组来分别存储 一些小于 10 的整数 ,这些数字按顺序排列在一起,分别表 示一个大整数的每一位上的数字,于是大整数的储存问题就解决了。然后按照基本乘法规则对这两个 大整数进行运算即可。下面给出了程序的代码。
    2022-02-07 02:59:09下载
    积分:1
  • 二叉排序树,包括插入节点、删除节点、中序线索化、中序遍历等功能...
    二叉排序树,包括插入节点、删除节点、中序线索化、中序遍历等功能-Binary sort tree, including the insert node, delete node, in the sequence of clues, in the traversal functions
    2022-07-18 03:50:01下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载