搜索资源列表
桌面hhs
- 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
sjjg1
- 问题描述 假设停在铁路调度站入口处的车厢序列的编号依次为1,2,3..n。设计一个程序,求出所有可能由此输出的的长度为n的车厢序列。 基本要求 在栈的顺序存储结构SqStack之上实现栈的五种基本要求,即实现栈类型。除了栈初始化操作之外,都要按函数实现。Push(s,x)是一个布尔函数,当且仅当栈s上溢出时返回“假“值;再说明一个ElemType型的常量StackEmptyMark,操作pop(s)和top(s)遇到栈s为空的情况时返回值StackEmptyMark。程序对栈的
sqstack
- 和线性表类似,栈也有两种存储表示:顺序栈和链栈。 顺序存储结构简称为顺序栈。和顺序表类似,对顺序栈也需要事先为它分配一个可以容纳最多元素的存储空间。 -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
SqStack
- 数据结构,栈的应用,表达式求值的源码及实验报告!
51623457
- 先序遍历非递归算法 #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
车厢调度问题123
- 设计一个车厢调度的程序,输出所有可能的序列 假设停在铁路调度站入口处的车厢序列的编号依次为1,2,3,n , 设计一个程序,求出所有可能的长度为n 的车厢序列。 实现栈的顺序存储结构SqStack之上实现栈的基本操作,即实现栈类型。程序对栈的基本操作必须借助于基本操作进行。 测试数据取 n=1,2,3, 程序输出的结果应该在屏幕上显示出来-Designs the procedure which a compartment dispatches, the output all possible
sqstack
- 实现顺序栈的建立,删除,插入一个元素等基本操作-realize sqstack s basic function,such as insert a data,delete a data and so on.
123
- 一个简单的学生信息管理系统c语言程序,基本上应该有的功能都可以基本实现了-Students a simple information management system c language program basically should have the basic functions can be achieved
SqStack
- 这是我写一个stack的实现,其中有不同的算法用到了stack,希望能对学习数据的人有用,请注意 在vc下使用
shunxuzhan
- #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
SqStack
- 数据结构中顺序栈的实现,包含插入,删除,更新操作。-realize the qlstack
sqstack
- 栈的基本操作,综合实现,对于初学者简单易懂。-Basic operation of the stack, comprehensive implementation, easy to understand for beginners.
1
- 中序遍历递归与非递归,很简单的代码,就是这么简单!-#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 {
SqStack
- 用C语言实现了顺序栈,包括创建栈、押栈、出栈等。-Using C language to implement the order of the stack, including the creation of the stack, charge stack, the stack and so on.
CarriageScheduling
- 假设停在铁路调度站(如教科书中图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
SQStack
- SQStack,顺序栈(与链栈有区别),存c写的,注释很清楚-SQStack, the order of the stack (stack with the chain are different), storage c written comments clearly
sqstack
- 以顺序栈为例,检查一个字符串是否是对称串,已通过测试-Stack, for example in order to check whether a string is the string symmetry, has been tested
Sqstack
- 实现顺序栈的建立,删除,插入一个元素等基本操作对于初学者简单易懂-In order to achieve the establishment of the stack, delete, insert an element basic operation easy to understand for beginners
SqStack
- 数据结构中栈的两个应用,进制转换和括号匹配-Data structure stack two application, hexadecimal conversion and matching brackets
sqstack
- 用数据结构实现栈的顺序存储表示,包括站的定义,初始化,求栈元素长度,插入新元素为栈顶元素等-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