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

搜索资源列表

  1. list

    0下载:
  2. 线性表c语言实现,数据结构 ,
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1612
    • 提供者:lt
  1. sj

    0下载:
  2. 数据结构完整实现代码,包括线性表,栈,队列,树,二叉树,图,查找,排序-Data structure to achieve a complete code, including linear tables, stacks, queues, trees, binary tree, graph, search, sort
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:204803
    • 提供者:lt
  1. ds_6

    1下载:
  2. 1.定义哈希表数据结构。 2.除留余数法做为哈希函数、 H(key) = key P 用线性探测再散列解决冲突方法,编写函数,实现哈希造表的过程,并输出哈希表。 3.编写函数,求查找成功时的平均查找长度(ASL)。-1. Define hash table data structure. 2. In addition to leaving the remainder as the hash function method, H (key) = key P re-hashing
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:636
    • 提供者:Yvonne
  1. xianxingbiao

    0下载:
  2. 使用TC的数据结构的基本操作——线性表的基本操作-TC data structure using the basic operations- the basic operation of the linear form
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1321
    • 提供者:李樱
  1. xianxingbiao

    0下载:
  2. 数据结构课程中,线性表实验源程序,用c++做的-Data structure course, the linear form experimental source, using c++ to do
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:131665
    • 提供者:kay
  1. LinearList

    0下载:
  2. 数据结构,线性链表实现,有具体例子.在VC2008环境编译即可执行。-data structure,linear list
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:938
    • 提供者:Robin.Wang
  1. stack

    0下载:
  2. 数据结构实现:堆栈(直接实现:顺序描述、链式描述;通过对线性表的派生的实现:顺序描述、链式描述)-Data structure implementation: Stack (direct implementation: the order of descr iption, chain descr iption derived through the implementation of the linear table: the order of descr iption, chain desc
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:5293
    • 提供者:Robin.Wang
  1. dictionary-skiplist-hashtable

    0下载:
  2. 数据结构的C++实现:字典的链表实现、线性开型寻址散列、链表散列(环境:VS2008)-C++ data structures to achieve: a dictionary of the list to achieve a linear open addressing hash based, hash list (Environment: VS2008)
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:2400
    • 提供者:Robin.Wang
  1. 123

    0下载:
  2. 有关数据结构中线性表的讲义,供大家学习,研究。-The data structure of the linear table handouts for them to learn and research.
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:331452
    • 提供者:吴雨
  1. aaa

    0下载:
  2. 根据《算法与数据结构》课程的结构体系,设计一个基于DOS菜单的应用程序。要利用多级菜单实现各种功能。比如,主界面是大项,诸如线性表、栈与队列、串与数组及广义表等,子菜单使这些大项中的一些功能或者小项。要求所有子菜单退出到他的父菜单。-According to " Algorithms and Data Structures" course of the structural system, design a menu-based DOS applications. To tak
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1733730
    • 提供者:长江
  1. bbb

    1下载:
  2. 根据《算法与数据结构》课程的结构体系,设计一个基于DOS菜单的应用程序。要利用多级菜单实现各种功能。比如,主界面是大项,诸如线性表、栈与队列、串与数组及广义表等,子菜单使这些大项中的一些功能或者小项。要求所有子菜单退出到他的父菜单。-According to " Algorithms and Data Structures" course of the structural system, design a menu-based DOS applications. To ta
  3. 所属分类:Data structs

    • 发布日期:2014-12-10
    • 文件大小:1849169
    • 提供者:长江
  1. database

    0下载:
  2. 数据结构里的实习题,包括:抽象数据类型、线性表及其应用等-Data structure in the practical issues, including: abstract data types, the linear table and its applications
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:39864
    • 提供者:李翔
  1. polynomial

    0下载:
  2. 对已知的多项式p(x)利用用线性表的数据结构进行加法,乘法,微商运算 加法的时间复杂度为O(n+m) 乘法的时间复杂度为O(nm) 微分的时间复杂度为O(n) 排序的平均时间复杂度为O(nlogn) 程序优点:通过顺序表和链表结合使用,使乘法合并同类项的时间复杂度降为O(1),乘法本身的时间复杂度也达到下界。 程序提供了有好的界面,并且有较好的容错性,输入输出人性化,符合人的习惯。 用快速排序代替了插入排序,使本程序能应对较大的数据。 程序缺点:系数和指数有范围限
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:2522
    • 提供者:刘晓明
  1. datastructure

    0下载:
  2. 《数据结构》课程实习一,实现对线性链表和数组的基本操作-" Data Structure" Course Practice realize a linear linked list and an array of basic operations
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1119
    • 提供者:梁传
  1. xianxingbiao

    0下载:
  2. 数据结构的相关知识,这一部分主要是关于线性表的,是word版本的,大家拿去吧-Knowledge of data structures, this part is mainly on the linear table is word version, we take it
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:14453
    • 提供者:
  1. data_struct

    0下载:
  2. 400多页的数据结构PPT, 从线性表到图全部涵盖,最后还有几个实例算法. 写的非常好!! 请用WORD 2003/WORD 2007 /wps以只读方式打开.-400 pages of data structures PPT, from linear table to map all the covers and, finally, several examples of algorithms. Was very good!! Please use WORD 2003/WORD 2007/
  3. 所属分类:Data structs

    • 发布日期:2017-05-24
    • 文件大小:7685852
    • 提供者:Zy
  1. Data_struct_all

    0下载:
  2. 数据结构, 精华文档, 400多页. 从线性表到图,应有尽有, 还附带几个常见算法. 强力推荐.-Data structure, the essence of the document, 400 pages. From linear form to the chart, everything, also with several common algorithms. Highly recommended.
  3. 所属分类:Data structs

    • 发布日期:2017-05-24
    • 文件大小:7685870
    • 提供者:Zy
  1. 2

    0下载:
  2. 1、掌握结构型数据的实际应用原理 2、掌握顺序存储的线性表的操作实现的实际应用 -1, grasp the practical application of structured data in principle 2, in order to master the operation of linear list stored in the actual application to achieve
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:39108
    • 提供者:chen
  1. Classical_linear_table_data_structure_tutorial_inf

    0下载:
  2. 数据结构教程线性表经典资料Classical linear table data structure tutorial information -Classical linear table data structure tutorial information Classical linear table data structure tutorial information
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:225710
    • 提供者:83er
  1. xianxingbiao

    0下载:
  2. 线性表实验报告,包含源码,用于数据结构与算法课程-Linear table test reports, data structures and algorithms course
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:44128
    • 提供者:aya
« 1 2 3 4 5 6 78 9 10 11 12 13 14 »
搜珍网 www.dssz.com