搜索资源列表

  1. Maze

    0下载:
  2. 数据结构的课程设计,利用堆栈的后进先出保存从起点开始的每一步行走。可以自定义迷宫地图,并在地图上标明,和用坐标表示行走路线。-Data structure of the curriculum design, use of the LIFO stack to preserve from the starting point for each walk away. Can customize the maze map and marked
  3. 所属分类:软件工程

    • 发布日期:2024-05-14
    • 文件大小:3757056
    • 提供者:zlx
  1. Stack

    0下载:
  2. a stack is a last in, first out(LIFO) abstract data type and data structure
  3. 所属分类:Windows编程

    • 发布日期:2024-05-14
    • 文件大小:244736
    • 提供者:mazik
  1. queue

    0下载:
  2. a queue (lifo memory) algo
  3. 所属分类:软件工程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:Mudasar
  1. colaenlazada

    0下载:
  2. Linked List with the LIFO behavior
  3. 所属分类:Windows编程

    • 发布日期:2024-05-14
    • 文件大小:26624
    • 提供者:na
  1. adt_stack

    0下载:
  2. 栈是允许在同一端进行插入和删除操作的特殊线性表。允许进行插入和删除操作的一端称为栈顶(top),另一端为栈底(bottom);栈底固定,而栈顶浮动;栈中元素个数为零时称为空栈。插入一般称为进栈(PUSH),删除则称为退栈(POP)。 栈也称为后进先出表(LIFO表)。-Create stack Push stack Pop stack Stack top Empty stack Full stack Stack
  3. 所属分类:其他小程序

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:Lookchard
  1. 20081_L2_CodiEnunciat

    0下载:
  2. the program is un LIFO stack from learning instructions of compilator program is a pract university and it writ in java -the program is un LIFO stack from learning instructions of compilator program is a pract universit
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-14
    • 文件大小:287744
    • 提供者:pereve
  1. StackExample

    0下载:
  2. Simple Stack example. Which show you how to implement LIFO in stack using link list.
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-14
    • 文件大小:2048
    • 提供者:shahid
  1. lifo

    0下载:
  2. this program is stack segment overflow using vb.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-14
    • 文件大小:12288
    • 提供者:cling
  1. 8888

    0下载:
  2. 主要是对数据结构中栈的知识的运用,实现了先进后出,后进先出的原理-Mainly in the stack data structure knowledge, to achieve the advanced post out the principle of LIFO
  3. 所属分类:系统编程

    • 发布日期:2024-05-14
    • 文件大小:142336
    • 提供者:zhigang
  1. Practica1

    0下载:
  2. A FIFO and LIFO source code
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-14
    • 文件大小:34816
    • 提供者:Pablo
  1. zidongji

    0下载:
  2. 本结构是以状态间的弧为核心定义的。其中s1和s2为该弧的初态和终态,s为该弧上接收的字母,in和out分别表示在接收字母后进栈和出栈的字母。为了方便查找和不使弧的个数受到限制,本程序将节点以链表的方式存储-This structure is state between the arc as the core defined. One for the arc s2 s1 and the initial state and eventual
  3. 所属分类:中间件编程

    • 发布日期:2024-05-14
    • 文件大小:8192
    • 提供者:zhanghuan
  1. stack

    0下载:
  2. 它按照后进先出的原则存储数据,先进入的数据被压入栈底,最后的数据在栈顶,需要读数据的时候从栈顶开始弹出数据(最后一个数据被第一个读出来)。 -It is in accordance with the principle of LIFO store data, first enter the data is pushed onto the stack at the end, the last data in the top of the
  3. 所属分类:Windows编程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:mfeng
  1. Expression-evaluation

    0下载:
  2. 表达式求值主要使用的数据结构是栈,因为栈具有后进先出的特点,与表达式求值时的符号和数值运算过程是刚好相符合的。表达式求值也是栈的一个典型的运用。-Expression evaluation is the main data structure used in the stack, because the stack has the characteristics of LIFO, and expression evaluation wh
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-14
    • 文件大小:38912
    • 提供者:sy
  1. Solving-expressions

    0下载:
  2. 简单算术表达式的求解,利用栈的后进先出的特点,加入了对算式合法性的判断-Solving simple arithmetic expression, the use of LIFO stack characteristics, added to the formula to determine the legality of
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-14
    • 文件大小:2048
    • 提供者:ryan
  1. stack

    0下载:
  2. 栈是限制仅在表的一端插入和删除的线性表,是生活中某些过程的抽象。插入和删除操作的一端称为栈顶,插入操作称作入栈(Push),删除操作称作出栈(Pop)。栈顶元素总是最后进栈的,和最先出栈的;而栈底元素是最先进栈,最后出栈。栈具有后进先出(LIFO)的特性。顺序栈是栈的顺序存储结构的实现。链栈是栈的链式存储结构的实现。-Stack is limited only to one end of the table insert and rem
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-14
    • 文件大小:2048
    • 提供者:王子剑
  1. Stack-and-Queue-FIFO

    0下载:
  2. Queue是先进先出的集合而Stack是后进先出的集合-Queue is a collection of FIFO Stack is a LIFO collection
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-14
    • 文件大小:5120
    • 提供者:hlh
  1. Stack--FIFO

    0下载:
  2. Queue是先进先出的集合而Stack是后进先出的集合-Queue is a collection of FIFO Stack is a LIFO collection
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-14
    • 文件大小:4096
    • 提供者:hlh
  1. stack_16x8

    0下载:
  2. VHDL语言写的16x8堆栈模块设计,存储器全满时给出信号并拒绝继续存入;读出时按后进先出原则;存储数据一旦读出就从存储器中消失;有相应的testbech文件,经测试可用。对小型设计很有用!欢迎下载交流学习。-Write VHDL 16x8 stack module design, memory signal is given full and refused to continue the deposit readout LIFO
  3. 所属分类:VHDL编程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:电工
  1. Lecture_06-(Stacks)

    0下载:
  2. The stack is the simplest of data structures. Placing something onto the stack and removing something from the stack is restricted to the top of the stack. That is why it is also defined as Last In First Out (LIFO) sto
  3. 所属分类:软件工程

    • 发布日期:2024-05-14
    • 文件大小:687104
    • 提供者:Nameless
  1. stack1

    0下载:
  2. a stack is a particular kind of abstract data type or collection in which the principal (or only) operations on the collection are the addition of an entity to the collection, known as push and removal of an entity, know
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:subodh
« 1 23 »

源码中国 www.ymcn.org