CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - stack push

搜索资源列表

  1. sta

    0下载:
  2. 设当前系统中有多个栈在工作,多栈模拟问题要求模拟当前系统中各栈的工作状态。 由文件input.txt给出输入数据。第1行是正整数n,表示有n个栈操作。接下来的n行, 每行给出一个栈操作指令。栈操作指令“PUSH A B”表示将正整数B加入编号为A的栈顶; 栈操作指令“POP A”表示输出编号为A的栈顶元素输入文件示例 输出文件示例 input.txt output.txt 7 PUSH 1 100 PUSH 1 200 PUSH 2 300 PUSH 2 40
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:7.31kb
    • 提供者:赖荣伟
  1. Source_Code_Stack_implementation_with_array

    0下载:
  2. Stack implementation with array this code is basically to Pop and Push an item in stack with the help of array -Stack implementation with array this code is basically Pop and Push to an item in stack with the help of array
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:4.52kb
    • 提供者:tangxuan
  1. stack

    0下载:
  2. 用c++实现了一个比较特殊的堆栈类,可以push,可以pop,输出测试栈顶指针的变化。
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:7.39kb
    • 提供者:Feng Yanzhao
  1. qishiyoulidama

    0下载:
  2. 算法思想: 用一个二维的数组stack[36][3]充当栈的作用,用来记录36个位置的行,列,以及方向.设置全程标量top,用来指向当前位置.用push()和pop()函数分别实现压栈和出栈. start()函数则是具体实现骑士周游算法的函数.具体思想见注释.
  3. 所属分类:界面编程

  1. stack.rar

    0下载:
  2. 用栈实现算式的运算,通过把操作符压栈和操作符的优先级进行运算。,Formula used to achieve the computing stack, push through the operator and operator to operator priority.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:991.23kb
    • 提供者:xdb
  1. comb

    0下载:
  2. 一、 程序作用 实现排列组合功能。 例如:如果允许出现的数字为1 2 3 4 ,每个组合有3个元素,则输出的组合为 (1 2 3) (1 2 4) (1 3 4) (2 3 4) 二、 算法实现 采用栈的思想,首先输入第一个组合(1 2 3…..r) 如果r<n,则r弹栈,把r=r+1压栈,如果r=n,则r弹栈,同时把前一项也弹栈,再依次增加,直到出现组合 (n-r+1 n-r+2 ….n). -First, procedures for the functi
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:8.83kb
    • 提供者:yangjun
  1. huichang2

    0下载:
  2. 会场安排,使用了3个向量存储开始时间和结束时间和两个时间的合并,并且排好了序。 用一个栈模拟活动的进行,压栈代表需要新开一个活动,出栈表示有一个活动结束-The venue arrangements, the use of three vectors stored start time and end time and the time the merger of the two, and lined up the sequence. With a stack simulation acti
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1.18kb
    • 提供者:waterfly
  1. zhsy

    0下载:
  2. //定义栈的存储结构 typedef struct StackNode { ElemType data //存放数据 struct StackNode * next //指向下一个结点 }StackNode typedef struct { StackNode * top // 栈顶指针 }LinkStack 实现下列操作: void InitStack(LinkStack &S) // 栈的初始化 void
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-22
    • 文件大小:1.86kb
    • 提供者:lixian
  1. HP

    0下载:
  2. 一、常用指令 1. 通用数据传送指令. MOV 传送字或字节. MOVSX 先符号扩展,再传送. MOVZX 先零扩展,再传送. PUSH 把字压入堆栈. POP 把字弹出堆栈. -First, a commonly used commands. Generic data transfer instructions. MOV to send word or byte. MOVSX first sy
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:2.13kb
    • 提供者:chen
  1. adt_stack

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

    • 发布日期:2017-04-03
    • 文件大小:1.21kb
    • 提供者:Lookchard
  1. stack

    0下载:
  2. C++实现的各种堆栈操作(完整版 包括:build push pop等)-stack operation
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-26
    • 文件大小:948byte
    • 提供者:blizzard
  1. stack

    0下载:
  2. 使用C语言实现数据堆栈功能,数据类型可自定义,pop,push操作性能较好-Data stack using the C language functions, data types can be customized, pop, push the operational performance is better
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:156.11kb
    • 提供者:御风
  1. stack

    0下载:
  2. 栈的基本操作,压栈,出栈,初始化以及判定栈是否为空-The basic operation of the stack, push, stack, initialization, and to determine whether the stack is empty
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:1.93kb
    • 提供者:郑琦
  1. stack

    0下载:
  2. 基本的栈操作,初始化,pop,push,设置空等-stack operate
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:1.4kb
    • 提供者:香山红叶
  1. VC.push.stack.design.code

    0下载:
  2. VC堆栈推开发设计经典代码VC to push development of stack design classic code -VC to push development of stack design classic code
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:17.4kb
    • 提供者:teem
  1. myStack

    0下载:
  2. 自己写的一个stack类 push pop max min操作均为O(1)复杂度-Himself wrote a stack push pop max min operation are O () complexity
  3. 所属分类:Other systems

    • 发布日期:2017-11-06
    • 文件大小:600byte
    • 提供者:~V
  1. Stack

    0下载:
  2. 堆栈实现。堆栈就是这样一种数据结构。它是在内存中开辟一个存储区域,数据一个 顺序地存入(也就是“压入——push”)这个区域之中。有一个地址指针总指向最后一个压入堆栈的数据所在的数据单元,存放这个地址指针的寄存器就叫做堆栈指示器。开始放入数据的单元叫做“栈底”。数据一个一个地存入,这个过程叫做“压栈”。在压栈的过程中,每有一个数据压入堆栈,就放在和前一个单元相连的后面一个单元中,堆栈指示器中的地址自动加1。读取这些数据时,按照堆栈指示器中的地址读取数据,堆栈指示器中的地址数自动减 1。这个过程叫
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:593byte
    • 提供者:诚溜
  1. STACK

    0下载:
  2. 用C语言编写的堆栈接口,适用于各种环境,提供接口: STACK *initStack(int MaxRoom) void destroyStack(STACK **spp) void resetStack(STACK *sp) Boolean isStackEmpty(STACK stack) Boolean isStackFull(STACK stack) Boolean push(STACK *sp, USER_TYPE data) Boolean p
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:591byte
    • 提供者:锋中凌乱
  1. push

    0下载:
  2. 完整地描述了数据结构中的进栈过程:在堆栈中,用户只能在指定的一端插入和删除元素,因此具有后进先出(LIFO)的特性;在队列中,用户只能在一端插入元素而在另一端删除元素,因此呈现先进先出(FIFO)的特性。从数据结构角度看,它们都是线性结构。 -A complete descr iption of the data structure into the stack process: in the stack, users can insert and delete elements at on
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:554byte
    • 提供者:cindy
  1. stack

    0下载:
  2. 建立一个stack,可以pop push delete stack里面的characters,同时可以检测stack是否为空或者已满-The establishment of a stack, you can pop push delete stack inside the characters, and can detect whether stack is empty or full
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:2.48kb
    • 提供者:charlie
« 12 »
搜珍网 www.dssz.com