CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - 线性表顺序存储

搜索资源列表

  1. jiaojibingji

    0下载:
  2. 使用顺序表实现的交集并集问题,其中使用了类模板和简单的线性表存储结构。-order to achieve the intersection of sets, which use a class template and a simple linear table storage structure.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:17273
    • 提供者:muyu
  1. LocateElem

    0下载:
  2. /* shiyan.c 第四组数据结构实验作业。Author:zhg 功能:本程序用于验证函数 LocateElem(L,e,compare()) 。即求出现行表中元素的位序。 程序中的线性表采用顺序存储,以更方便于该操作的实现。 */ -/ * shiyan.c fourth group structure of the experimental data. Author : zhg function : This procedure is used to v
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:12203
    • 提供者:zhg
  1. Linewatch

    0下载:
  2. 线性表的基本操作,基本操作:插入、删除、查找以及线性表合并等运算在顺序存储结构和链接存储结构上的运算。-linear form the basic operation, the basic operations : insert, delete, Search and linear forms merging operations in order to link storage structures and storage structure on the operation.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1911
    • 提供者:林静
  1. sqstack

    0下载:
  2. 和线性表类似,栈也有两种存储表示:顺序栈和链栈。   顺序存储结构简称为顺序栈。和顺序表类似,对顺序栈也需要事先为它分配一个可以容纳最多元素的存储空间。 -and linear scale similar Stack also have two storage : order Stack and Stack chain. Sequence storage structure referred to as the sequence of stack. Table and order
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:8076
    • 提供者:小虫子
  1. xyz

    0下载:
  2. 线性顺序存储结构双链表正排序逆波兰计算器二叉排序树二叉树实例
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:17631
    • 提供者:辉煌
  1. sqlist

    0下载:
  2. 顺序表是线性表的一种最简单的存储结构。大家多多支持
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:39793
    • 提供者:小雨
  1. file1

    0下载:
  2. 线性表的顺序存储表示(结构)及实现 创建一个顺序表(数据自拟); 在顺序表的指定位置插入一个元素; 在顺序表的指定位置删除一个元素; 将两个有序顺序表合并成一个新的有序顺序表
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1794
    • 提供者:朱琼琼
  1. 掌握线性表的结构特点

    0下载:
  2. 。 掌握线性表的基本操作:初始化,插入,删除,查找,判空,求线性表长度等运算在顺序存储结构和链式存储结构上的实现。 通过本章实验帮助学生加深对C语言的使用(特别是函数的参数调用、指针类型的应用)。
  3. 所属分类:数据结构常用算法

    • 发布日期:2010-10-09
    • 文件大小:1411
    • 提供者:oiewwang
  1. Datastruct_C 实现顺序表的就地逆置

    0下载:
  2. Descr iption 试写一算法,实现顺序表的就地逆置,即利用原表的存储空间将线性表(a1,a2,…..an),逆置为( an,an-1, …….a2,a1)。 Input 输入长度n 接下来是n个数 Output 操作后的序列。 Sample Input 7 2 4 1 7 5 3 6 Sample Output 6 3 5 7 1 4
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-03-21
    • 文件大小:533
    • 提供者:李杨
  1. CPP1 顺序表的基本操作实现实验

    0下载:
  2. 一、顺序表的基本操作实现实验 要求:数据元素类型ElemType取整型int。按照顺序存储结构实现如下算法: 1)创建任意整数线性表(即线性表的元素值随机在键盘上输入)的顺序存储结构(即顺序表),长度限定在25之内; 2)打印/显示(遍历)该线性表(依次打印/显示出表中元素值); 3)在顺序表中查找第i个元素,并返回其值; 4)在顺序表第i个元素之前插入一已知元素; 5)在顺序表中删除第i个元素; 6)求顺序表中所有元素值(整数)之和; 二、链表(
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-03-21
    • 文件大小:2761
    • 提供者:goudezong
  1. 已知线性表的元素按递增顺序排列

    0下载:
  2. 已知线性表的元素按递增顺序排列,并以带头结点的单链表作存储结构。试编写—个删除表中所有值大于min且小于max的元素(若表中存在这样的元素)的算法程序。,Linear table of elements known by increasing order, and to take the lead in a single node list for the storage structure. Test preparation- a deletion of the table all the v
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-03-02
    • 文件大小:793
    • 提供者:weiwei
  1. 针对链式或顺序存储的线性表实现指定的操作

    0下载:
  2. 针对链式或顺序存储的线性表实现指定的操作 使用栈或队列解决一个应用问题 实现对二叉树的一个指定的操作或用二叉树解决一应用问题 实现对图的一个指定的操作或用图解决一个应用问题 查找算法设计 排序算法设计 ,Store chain or the order for the linear table implementation of the operation specified stack or queue to use the application to solve a probl
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-03-21
    • 文件大小:24964
    • 提供者:冯莹莹
  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. suan-fa-shi-xian

    0下载:
  2. 线性表顺序存储结构下的十几种基本的算法,功能较为那简单-Linear sequence of storage structures under the table a dozen basic algorithms, the more that a simple function
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:2202
    • 提供者:machaojie
  1. test1

    0下载:
  2. deque可以运行 (deque与vector采用线性表顺序存储结构,但不同的是它分块)-The storage structure order linear list
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:648
    • 提供者:willion
  1. lab02

    0下载:
  2. 此文件是有关线性表顺序存储结构上所有功能的实现,例如构造空表、销毁或重置、元素个数、插入以及删除、返回值的实现等。-This file is the linear table stored in the order structure all functions are implemented, such as empty table structure, destroyed, or reset, the number of elements, insert, and delete, the r
  3. 所属分类:Data structs

    • 发布日期:2017-11-22
    • 文件大小:17410
    • 提供者:Andy
  1. chuanzhibokexianxinglianbiao

    1下载:
  2. 传智播客的 企业财富库线性链表 顺序存储开发和设计-It is chuanzhiboke.
  3. 所属分类:STL

    • 发布日期:2017-05-03
    • 文件大小:720218
    • 提供者:思哲
  1. 顺序表

    0下载:
  2. 顺序表是在计算机内存中以数组的形式保存的线性表,是指用一组地址连续的存储单元依次存储数据元素的线性结构。线性表采用顺序存储的方式存储就称之为顺序表。顺序表是将表中的结点依次存放在计算机内存中一组地址连续的存储单元中。本程序设计顺序表的创建销毁插入遍历等操作。(A sequential table is a linear list stored in an array of memory in a computer memory. It is a linear structure that sto
  3. 所属分类:数据结构

    • 发布日期:2017-12-31
    • 文件大小:269312
    • 提供者:James1994
  1. 8576-顺序线性表的基本操作

    0下载:
  2. 顺序表是在计算机内存中以数组的形式保存的线性表,是指用一组地址连续的存储单元依次存储数据元素的线性结构。(The sequence table is a linear table stored in the form of an array in computer memory. It refers to a linear structure that stores data elements sequentially in a continuous storage unit.)
  3. 所属分类:数据结构

    • 发布日期:2018-04-29
    • 文件大小:13312
    • 提供者:蓉-
  1. 顺序查找代码

    0下载:
  2. 顺序查找适合于存储结构为顺序存储或链接存储的线性表。 基本思想:顺序查找也称为线形查找,属于无序查找算法。从数据结构线形表的一端开始,顺序扫描,依次将扫描到的结点关键字与给定值k相比较,若相等则表示查找成功;若扫描结束仍没有找到关键字等于k的结点,表示查找失败。
  3. 所属分类:数学计算/工程计算

« 12 3 4 »
搜珍网 www.dssz.com