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

搜索资源列表

  1. shunxuzhan

    0下载:
  2. 顺序栈的实现,有一个很好栈数据结构,算法简单,能实现栈的各种操作-The realization of the order of the stack, there is a good stack data structure, algorithm is simple and can achieve a variety of stack operation
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:1253
    • 提供者:liuminsheng
  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. stack

    0下载:
  2. 这是栈数据结构。在操作系统中非常重要。本文件提供了一种C++实现方案。-This is a stack data structure. At the operating system is very important. This document provides a C++ implementation program.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:572
    • 提供者:刘志福
  1. stack_link

    0下载:
  2. 这是用链表实现的栈数据结构。链表数据结构的最大优点是不受元素个数的限制,除非内存耗尽。-This is the stack implementation with linked list data structure. List data structure is not subject to the greatest advantage of the restricted number of elements, unless the memory run out.
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:637
    • 提供者:刘志福
  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. stack

    0下载:
  2. 数据结构第三章中栈和队列的源程序,实现了全部算法-this is a code of data structure
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:15816
    • 提供者:wangming
  1. lianzhan

    0下载:
  2. 数据结构的链栈C++代码,实现链栈的初始化,入栈,出栈,取栈顶元素等操作-The chain of stack data structure C++ code to achieve the chain of stack initialization, stack, a stack, take the top element and other operations
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:22500
    • 提供者:张尚
  1. bracketmatch

    0下载:
  2. 检查算数表达式中括号是否匹配 使用“链式栈”模板定义作为数据结构来实现括号匹配。-Check the arithmetic expression in parentheses match use " chain stack" template definition as a data structure to achieve the matching parenthesis.
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1368
    • 提供者:
  1. 16008408_E1

    0下载:
  2. 1、实现算术表达式的求值运算,程序通过键盘输入一个表达式,通过运算得到表达式的值,并在显示器上输出完整的表达式及其值; 2、程序实现时,采用栈数据结构 3、表达式以字符串的形式输入; 4、表达式中包括的基本运算符有加、减、乘、除(分别用+、-、*、、表示),表达式中包括括号的处理,括号可以嵌套;表达式中的数字可以是整数,也可以是小数-1, and the evaluation of arithmetic operations, the program through keyboard
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3346
    • 提供者:张笑薇
  1. palindrome

    0下载:
  2. 实现了输入字符串的检测,字符串以@结束。利用栈和队列的基础知识,结合数据结构,实现的回文判断!-Achieve detection of the input string, string @ end. Using the basics of stacks and queues, combined with data structure, determine the realization of the palindrome!
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-29
    • 文件大小:1398
    • 提供者:刘聪
  1. stacknode

    0下载:
  2. 栈这种数据结构是一个工具性的数据结构,通常被其它复杂数据结构所使用。比如实现二叉树的遍历的非递归算法。下面就用C++模板实现栈数据结构的一个较完整代码!在书本《数据结构(C语言版)--严慰明》提到栈可以用数组,也可以用链表实现,这里只用链表实现这一数据结构。-This data structure is a stack instrumental data structure is often used for other complex data structures. Such as a bi
  3. 所属分类:MiddleWare

    • 发布日期:2017-04-02
    • 文件大小:2278
    • 提供者:liyuyu
  1. main

    0下载:
  2. 问题描述   中缀表达式就是我们通常所书写的数学表达式,后缀表达式也称为逆波兰表达式,在编译程序对我们书写的程序中的表达式进行语法检查时,往往就可以通过逆波兰表达式进行。我们所要设计并实现的程序就是将中缀表示的算术表达式转换成后缀表示,例如,将中缀表达式 (A 一 (B*C 十 D)*E) / (F 十 G ) 转换为后缀表示为: ABC*D十E*—FG十/ 注意:为了简化编程实现,假定变量名均为单个字母,运算符只有+,-,*,/ 和^(指数运算),可以处理圆括号(),
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:1439
    • 提供者:yyz
  1. linkedStack

    0下载:
  2. C++语言封装了链式栈数据结构,实现了判断栈是否为空、压栈、出栈等函数。-C++ language encapsulates the chain stack data structure to achieve determine whether the stack is empty, push, stack and other functions.
  3. 所属分类:Data structs

    • 发布日期:2017-05-09
    • 文件大小:1830478
    • 提供者:bang
  1. Convert-infix

    0下载:
  2. 问题描述   中缀表达式就是我们通常所书写的数学表达式,后缀表达式也称为逆波兰表达式,在编译程序对我们书写的程序中的表达式进行语法检查时,往往就可以通过逆波兰表达式进行。我们所要设计并实现的程序就是将中缀表示的算术表达式转换成后缀表示,例如,将中缀表达式 (A 一 (B*C 十 D)*E) / (F 十 G ) 转换为后缀表示为: ABC*D十E* FG十/ 注意:为了简化编程实现,假定变量名均为单个字母,运算符只有+,-,*,/ 和^(指数运算
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1143
    • 提供者:王乐
  1. 离散结构ppt

    0下载:
  2. 括号匹配,数据结构中比较重要 的栈的利用,数据结构中比较重要 的栈的利用。(Parentheses matching, data structure in the more important use of the stack, the data structure of the more important use of the stack.)
  3. 所属分类:数据结构

    • 发布日期:2017-12-19
    • 文件大小:15361024
    • 提供者:xianxianya
  1. 15349069_卢健圳_猴子选大王解题报告V1

    0下载:
  2. c++数据结构,链栈入门,经典问题猴子选大王解题思路(C++ data structure, the introduction of chain stack)
  3. 所属分类:其他

    • 发布日期:2017-12-31
    • 文件大小:520192
    • 提供者:luigisysu
  1. 数据结构

    0下载:
  2. (1)建立链队列,并实现一些元素入队,实现链队列的建立和入队的基本操作; (2)实现某些元素出队,实现链队列的出队的基本操作((1) the establishment of the chain queue, and realize some basic elements into the team, and the team operation to achieve the establishment of the chain queue; (2) to realize some elem
  3. 所属分类:数据结构

    • 发布日期:2018-01-03
    • 文件大小:1024
    • 提供者:晌午v
  1. Queue

    0下载:
  2. 队列是一种特殊的线性表,特殊之处在于它只允许在表的前端(front)进行删除操作,而在表的后端(rear)进行插入操作,和栈一样,队列是一种操作受限制的线性表。进行插入操作的端称为队尾,进行删除操作的端称为队头。(The queue is a special linear list, and the special thing is that it only allows the deletion of the front end of the table (front), and the in
  3. 所属分类:Windows编程

    • 发布日期:2018-01-05
    • 文件大小:1723392
    • 提供者:lirrrh
  1. 迷宫

    0下载:
  2. 利用数据结构中的栈,实现简易迷宫的走法。(Using the data structure of the stack to achieve simple maze walk.)
  3. 所属分类:易语言编程

    • 发布日期:2018-01-06
    • 文件大小:1024
    • 提供者:和你的跃
« 1 2 3 4 56 7 8 9 10 ... 44 »
搜珍网 www.dssz.com