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

搜索资源列表

  1. migong

    0下载:
  2. 数据结构中栈的应用--迷宫问题数据结构中栈的应用--迷宫问题
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1493
    • 提供者:张镇生
  1. 顺序栈

    0下载:
  2. 数据结构:顺序栈-data structure : Stack order
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:10993
    • 提供者:longyuee
  1. 5

    0下载:
  2. 文章论述了数据结构中栈的理论知识和应用栈解决迷宫问题的算法设计, 并用VB 实现 了迷宫程序的设计
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:219766
    • 提供者:shirley
  1. SqStack

    0下载:
  2. 数据结构,栈的应用,表达式求值的源码及实验报告!
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:45377
    • 提供者:Jason Jue
  1. 顺序栈的基本操作

    1下载:
  2. 顺序栈的基本操作,一共9个,与吴伟民数据结构课本完全一致,用C实现-order stack the basic operation, a total of nine, and Xiulan WU Weimin textbooks data structure is fully consistent with achieving C
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1186
    • 提供者:李雷
  1. 链栈

    0下载:
  2. 数据结构里的栈,用链表这种存储方式实现,和用数组方式存储的有个比较。-data structure, the stack, with Chain achieve such storage, and the use of the array is stored in a relatively.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2334
    • 提供者:天涯明月
  1. java_stack

    0下载:
  2. 用java实现数据结构中的栈和队列,是一个applet程序,可以通过实际操作来演示数据结构的栈的具体实现方式。-Realize the stack and queue in the structure of the data with java. It s a applet programe which can demonstrate realizing the way concretly of the stack of the structure of the data through pra
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:18343
    • 提供者:吴强
  1. OrderedArray

    0下载:
  2. 用java实现数据结构中的栈和队列,是一个applet程序,可以通过实际操作来演示数据结构的栈的具体实现方式。-An applet program, use java to achieve stack and queue in data structure. It can be used to demonstrate the implement of the stack.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:10636
    • 提供者:吴强
  1. Bubble_stack

    0下载:
  2. 用java实现数据结构中的栈和队列,是一个applet程序,可以通过实际操作来演示数据结构的栈的具体实现方式。-This is an applet program, which implements Stack and List by means of java. It can show the actions of stack through operations.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:5410
    • 提供者:吴强
  1. Insertion_stack

    0下载:
  2. 用java实现数据结构中的栈和队列,是一个applet程序,可以通过实际操作来演示数据结构的栈的具体实现方式。-An applet program, which use java to implement the stack and queue data structure. It can be used to demonstrate the implement of stack.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:5807
    • 提供者:吴强
  1. Selection_stack

    0下载:
  2. 用java实现数据结构中的栈和队列,是一个applet程序,可以通过实际操作来演示数据结构的栈的具体实现方式。-use java to Selection_stack
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:5557
    • 提供者:吴强
  1. 栈类

    0下载:
  2. 栈(stack)是程序设计过程中经常遇到朝气一种数据结构形式,它对于数据的存放和操作有下面这样的特点: 1) 它只有一个对数据进行存入和取出的端口; 2) 后进者先出,即最后被存入的数据将首先被取出。其形式很象一种存储硬币的小容器,每次只可以从顶端压入一个硬币,而取出也只可以从顶端进行,即后进先出。 这样的数据存储和管理形式在一些程序设计中很有用。例如,编译系统中(这是一类比较复杂的程序),对于函数调用的处理、对于表达式计算的处理,都利用了栈这样的数据结构。- The stack (stack)
  3. 所属分类:Data structs

    • 发布日期:2017-11-18
    • 文件大小:3005
    • 提供者:墨镜牛郎
  1. zhan

    0下载:
  2. 数据结构里栈的所有操作,我已经证明了他的通过,放心了!-Data structure stack all operations, I have to prove his passed, relieved!
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:1124
    • 提供者:
  1. a.doc

    0下载:
  2. 1) 根据栈数据结构,分别建立一个顺序栈和链式栈并实现其上基本操作(出栈和入栈等); 2) 根据队列数据结构,分别建立链队列和循环队列,并完成其上的基本操作(出入队列等); 3) 参考P80表达式求值例题,应用栈的基本操作实现简单表达式求值运算及其进出栈模拟过程(给出程序执行过程中栈的变化过程); 4) 阅读P83栈与递归的实现一节内容和3阶汉诺塔问题。使用栈数据结构解决3阶汉诺塔问题,编写程序并模拟栈及其汉诺塔的搬运过程(给出程序执行过程栈的变化过程与圆盘的搬动状态)。 5)
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:4684
    • 提供者:sad
  1. TRACK

    0下载:
  2. 数据结构课程设计之堆栈的应用,能实现堆栈这个数据结构的基本应用,例如,初始化,出栈和入栈操作等。-Data structure the curriculum design of the stack of applications, to achieve the stack data structure of the basic applications, for example, initialization, a stack and入栈operation.
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:932
    • 提供者:胡锦涛
  1. fanh

    0下载:
  2. 这是一个停车场的模拟系统,在对数据结构栈与队列的熟悉及实现-pppppppppppppppppppppppppppppp
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1821
    • 提供者:李白
  1. stackqueue

    0下载:
  2. 数据结构栈和队列基本源代码,并包括银行模拟、中缀表达式计算、列车调度、农夫过河问题等经典数据结构算法。-Stack and queue data structure of the basic source code, and includes Bank of simulation, in the calculation is made up of expressions, the train scheduling, the farmer across the river, such as the
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:12772
    • 提供者:guanjun
  1. biaodashiqiuzhi

    0下载:
  2. 数据结构的栈的应用,用C语言些的,类似与计算器 -Data structure of the application stack
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:356604
    • 提供者:陈新星
  1. Calculator11

    0下载:
  2. 数据库课程设计计算器 数据结构是栈 Calculator stack-Calculator stack
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:326708
    • 提供者:刘煌
  1. a

    0下载:
  2. 数据结构,栈的代码,用c语言实现了栈的各种操作-Data structure, the source stack, using c language to achieve a stack of various operating
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1443
    • 提供者:丫头
« 1 2 3 4 56 7 8 9 10 ... 44 »
搜珍网 www.dssz.com