CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - sqstack

搜索资源列表

  1. 桌面hhs

    0下载:
  2. int *base int *top int stacksize }sqstack inistack(sqstack &s) { s.base=(int*)malloc(stackintsize*sizeof(int)) if(!s.base) exit(-2) s.top=s.base s.stacksize=stackintsize return 1 }- int *base int *top i
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:3046
    • 提供者:王键
  1. sjjg1

    0下载:
  2. 问题描述 假设停在铁路调度站入口处的车厢序列的编号依次为1,2,3..n。设计一个程序,求出所有可能由此输出的的长度为n的车厢序列。 基本要求 在栈的顺序存储结构SqStack之上实现栈的五种基本要求,即实现栈类型。除了栈初始化操作之外,都要按函数实现。Push(s,x)是一个布尔函数,当且仅当栈s上溢出时返回“假“值;再说明一个ElemType型的常量StackEmptyMark,操作pop(s)和top(s)遇到栈s为空的情况时返回值StackEmptyMark。程序对栈的
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:3069
    • 提供者:刘伟昌
  1. sqstack

    0下载:
  2. 和线性表类似,栈也有两种存储表示:顺序栈和链栈。   顺序存储结构简称为顺序栈。和顺序表类似,对顺序栈也需要事先为它分配一个可以容纳最多元素的存储空间。 -and linear scale similar Stack also have two storage : order Stack and Stack chain. Sequence storage structure referred to as the sequence of stack. Table and order
  3. 所属分类:数据结构常用算法

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

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

    • 发布日期:2008-10-13
    • 文件大小:45377
    • 提供者:Jason Jue
  1. 51623457

    0下载:
  2. 先序遍历非递归算法 #define maxsize 100 typedef struct { Bitree Elem[maxsize] int top }SqStack void PreOrderUnrec(Bitree t) { SqStack s StackInit(s) p=t while (p!=null !StackEmpty(s-preorder non - recursive algorithm # define maxsize 100 typedef struct (Bitree
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:3376
    • 提供者:万方
  1. 车厢调度问题123

    0下载:
  2. 设计一个车厢调度的程序,输出所有可能的序列 假设停在铁路调度站入口处的车厢序列的编号依次为1,2,3,n , 设计一个程序,求出所有可能的长度为n 的车厢序列。 实现栈的顺序存储结构SqStack之上实现栈的基本操作,即实现栈类型。程序对栈的基本操作必须借助于基本操作进行。 测试数据取 n=1,2,3, 程序输出的结果应该在屏幕上显示出来-Designs the procedure which a compartment dispatches, the output all possible
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1018
    • 提供者:黎明
  1. sqstack

    0下载:
  2. 实现顺序栈的建立,删除,插入一个元素等基本操作-realize sqstack s basic function,such as insert a data,delete a data and so on.
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:864
    • 提供者:李玲丽
  1. 123

    0下载:
  2. 一个简单的学生信息管理系统c语言程序,基本上应该有的功能都可以基本实现了-Students a simple information management system c language program basically should have the basic functions can be achieved
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-28
    • 文件大小:382974
    • 提供者:嘉嘉
  1. SqStack

    0下载:
  2. 这是我写一个stack的实现,其中有不同的算法用到了stack,希望能对学习数据的人有用,请注意 在vc下使用
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-10
    • 文件大小:2085322
    • 提供者:soyygywvt
  1. shunxuzhan

    0下载:
  2. #define MAX 100 typedef int ElemType typedef struct{ ElemType*data int top } SqStack 顺序栈的基本操作,1,初始化建立空栈 2,入栈,3,显示所有的数据 4,退出 。有菜单栏,里面有word文档的运行结果显示-# define MAX 100 typedef int ElemType typedef struct (ElemType* data int top ) SqS
  3. 所属分类:CSharp

    • 发布日期:2016-01-26
    • 文件大小:103294
    • 提供者:xiaoting
  1. SqStack

    0下载:
  2. 数据结构中顺序栈的实现,包含插入,删除,更新操作。-realize the qlstack
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:962584
    • 提供者:猫猫
  1. sqstack

    0下载:
  2. 栈的基本操作,综合实现,对于初学者简单易懂。-Basic operation of the stack, comprehensive implementation, easy to understand for beginners.
  3. 所属分类:source in ebook

    • 发布日期:2017-04-10
    • 文件大小:1402
    • 提供者:xufei
  1. 1

    0下载:
  2. 中序遍历递归与非递归,很简单的代码,就是这么简单!-#include "stdio.h" #include"stdlib.h" #define MAXSIZE 20 typedef int datatype typedef struct Node { datatype data struct Node*lchild struct Node*rchild }Btnode,*Btree typedef struct {
  3. 所属分类:CSharp

    • 发布日期:2017-04-11
    • 文件大小:1024
    • 提供者:赵王
  1. SqStack

    0下载:
  2. 用C语言实现了顺序栈,包括创建栈、押栈、出栈等。-Using C language to implement the order of the stack, including the creation of the stack, charge stack, the stack and so on.
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:94249
    • 提供者:冬晨
  1. CarriageScheduling

    1下载:
  2. 假设停在铁路调度站(如教科书中图3.1(b)所示)入口处的车厢序列的编号依次为1,2,3,…,n。设计一个程序,求出所有可能由此输出的长度为n的车厢序列。 首先在教科书3.1.2节中提供的栈的顺序存储结构SqStack之上实现栈的基本操作,即实现栈类型。程序对栈的任何存取(即更改,读取和状态判别等操作)必须借助于基本操作进行。 -Railway Station stop scheduling assumptions (such as textbooks in 3.1 (b) below
  3. 所属分类:CSharp

    • 发布日期:2017-03-23
    • 文件大小:1040
    • 提供者:david
  1. SQStack

    0下载:
  2. SQStack,顺序栈(与链栈有区别),存c写的,注释很清楚-SQStack, the order of the stack (stack with the chain are different), storage c written comments clearly
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:63303
    • 提供者:huangjun
  1. sqstack

    0下载:
  2. 以顺序栈为例,检查一个字符串是否是对称串,已通过测试-Stack, for example in order to check whether a string is the string symmetry, has been tested
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:973
    • 提供者:cuiyingying
  1. Sqstack

    0下载:
  2. 实现顺序栈的建立,删除,插入一个元素等基本操作对于初学者简单易懂-In order to achieve the establishment of the stack, delete, insert an element basic operation easy to understand for beginners
  3. 所属分类:Education soft system

    • 发布日期:2017-04-03
    • 文件大小:259732
    • 提供者:话语
  1. SqStack

    0下载:
  2. 数据结构中栈的两个应用,进制转换和括号匹配-Data structure stack two application, hexadecimal conversion and matching brackets
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:192237
    • 提供者:li runbing
  1. sqstack

    0下载:
  2. 用数据结构实现栈的顺序存储表示,包括站的定义,初始化,求栈元素长度,插入新元素为栈顶元素等-Stack data structure stored in the order, including the definition of the station, initialized, find the length of the stack element, insert a new element to the top of the stack elements
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-11-16
    • 文件大小:224739
    • 提供者:邢素素
« 12 »
搜珍网 www.dssz.com