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

搜索资源列表

  1. 火车调度

    1下载:
  2. 这是一个VC编写的火车调度程序,实际上是数据结构栈的应用,同时设计到递归的应用。-This is a VC prepared by the train scheduling procedures, data structure is actually the application stack, recursive design to the application.
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:2453
    • 提供者:王小雪
  1. MyStack

    0下载:
  2. 用C#自编的栈的控件,可生成stack.d-written in C# stack of controls, which will generate stack.d
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:4132
    • 提供者:包磊
  1. railk

    0下载:
  2. 最优车皮排序问题 .问题描述: 在一个列车调度站中,k 条轨道连接到k 条侧轨处,形成k 个铁路转轨栈,从左到右依 次记为H1,H2,…,Hk 如下图所示。其中左边轨道为车皮入口(记为H0),右边轨道为出 口(记为Hk+1),编号为a1, a2,.,an 的n 个车皮从入口依次进入转轨栈,由调度室安排车 皮进出栈次序,并对车皮按其出栈次序重新排序为1,2,…,n。 调度室在安排车皮进出栈次序时,遵循以下规则: (1) 车皮入口H0 处的车
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:30200
    • 提供者:无翼
  1. stacks

    0下载:
  2. Ex3.6 车皮编序问题 .问题描述: 在一个列车调度站中,1 条轨道连接到1 条侧轨处,形成1 个铁路转轨栈,如下图所示。 其中左边轨道为车皮入口,右边轨道为出口,编号为1,2,…,n 的n 个车皮从入口依次进 入转轨栈,由调度室安排车皮进出栈次序,并对车皮按其出栈次序重新编序a1, a2,., an 。 .编程任务: 给定正整数n,编程计算左边轨道车皮编号依次为1,2,…,n 时,在右边轨道最多可 以得到多少个不同的车皮编序方案
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:26243
    • 提供者:无翼
  1. LinkStack

    0下载:
  2. 实现链栈的基本功能,街面很简单,用了就知道-chain stack to achieve the basic functions Streets is very simple, with the know
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:8375
    • 提供者:程静
  1. csharpcorecontent

    0下载:
  2. 这个主要写了CSHARP在数据结构中的一些操作,比如堆栈,二叉树-CSharp wrote the main data structure in some operations, such as stack, binary tree
  3. 所属分类:CSharp

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

    0下载:
  2. 利用C#编写了一个可以模拟堆栈使用的小例子,其中包含出栈、入栈等基本操作。-The use of C# Prepared a stack can be simulated using a small example, which contains a stack, the basic operation入栈.
  3. 所属分类:CSharp

    • 发布日期:2017-04-04
    • 文件大小:6870
    • 提供者:Rdc
  1. paking

    1下载:
  2. 一个模拟停车场的控制台程序,利用栈和队列来完成停车功能,并有计费功能-A simulated car park console procedures, the use of stack and queue to complete the parking functions, and billing functions
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:24720
    • 提供者:mlw
  1. stack

    0下载:
  2. 实现栈的顺序存储结构的一些基本算法, 譬如,初始化栈,判断栈是否为空,判断是否栈满,入栈,出栈,清空栈,等。-Implementation of the order of stack storage structure some of the basic algorithm, for example, to initialize the stack to determine whether the stack is empty, determine whether the stack is fu
  3. 所属分类:CSharp

    • 发布日期:2017-04-14
    • 文件大小:4916
    • 提供者:韩小寒
  1. stack

    0下载:
  2. 用非递归堆栈算法解决迷宫问题(入口出口可设置)-Stack with non-recursive algorithm to solve maze problems (import export can be set)
  3. 所属分类:CSharp

    • 发布日期:2017-04-06
    • 文件大小:623363
    • 提供者:wuzq
  1. stack

    0下载:
  2. 对栈的了解,里面是汉诺塔的例子,对学习有帮助-Understanding of the stack, which is the Tower of Hanoi example, be helpful for learning
  3. 所属分类:CSharp

    • 发布日期:2017-03-30
    • 文件大小:85109
    • 提供者:汤亮
  1. stack

    0下载:
  2. 这是一个堆栈,可以在人机交互的方式完成多个功能-This is a stack that can be completed in a way more interactive features
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:2628
    • 提供者:zhang
  1. stack-to-queue

    0下载:
  2. 用二个顺序存储结构的栈,通过这二个栈的相关运算实现队列的以下功能。 Queue() //构造函数 bool empty() //返回队列是否已空 bool full() //返回队列是否已满 int serve() //出队列,成功返回0,否则返回-1 int append(const string &item) //item进队列,成功返回0,否则返回-1 int retrieve(string &item) const //将队列头的值赋给item,成功返
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:1190
    • 提供者:一二三
  1. stack-and-recursion

    0下载:
  2. 清华大学电子工程系《数据结构与算法课程》课件:《栈与递归问题》-"stack and recursion"_courseware from the department of electronic engineering of Tsinghua University
  3. 所属分类:CSharp

    • 发布日期:2017-05-06
    • 文件大小:1165811
    • 提供者:毛祥荟
  1. Stack

    0下载:
  2. 对Stack进行简单的描述,有助于新手入门-Stack simple descr iption will help beginners
  3. 所属分类:CSharp

    • 发布日期:2017-04-10
    • 文件大小:566
    • 提供者:Joseph
  1. stack

    0下载:
  2. 使用C++语言学习堆栈的概念,包括进栈与出栈的操作-Using c++ language learning is the concept of stack, including into the operation of the stack and the stack
  3. 所属分类:CSharp

    • 发布日期:2017-11-26
    • 文件大小:252824
    • 提供者:李建业
  1. STACK

    0下载:
  2. 堆栈使用的细则,包括出栈入栈,浅显易懂的程序-Stack use of rules, including the stack into the stack, and simple procedure
  3. 所属分类:CSharp

    • 发布日期:2017-12-09
    • 文件大小:1272
    • 提供者:
  1. Stack

    0下载:
  2. Stack operations example for reference
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:26607
    • 提供者:pudn
  1. The-stack-order-example

    0下载:
  2. The stack order example The stack order example
  3. 所属分类:CSharp

    • 发布日期:2017-04-12
    • 文件大小:906
    • 提供者:wend
  1. the-use-of-stack

    0下载:
  2. 利用栈进行简单的多项式数值计算(可使用库里面带的各种数学函数)-Use a simple polynomial stack numerical (you can use inside the library with a variety of mathematical functions)
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:2506
    • 提供者:叶良辰
« 12 3 4 5 6 7 »
搜珍网 www.dssz.com