代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/314531/13564904
cpp first.cpp
#include"bianyi.h"
void Rfirst(bool First[][36],const int Ruleright[][7],const int Link[][8])
{
SqStack Sqstack;
InitStack(Sqstack);
int Ltrace(0),Rtrace(0),Fitrace(0);
int Lptr(0),Rptr(0),F
www.eeworm.com/read/313333/13590229
cpp 栈的顺序存储结构及实现.cpp
#include"stdio.h"
#include"stdlib.h"
#define MAXSIZE 100
typedef int ElemType;
typedef struct{ElemType elem[MAXSIZE];
int top;
}SqStack;
void OutStack(SqStack p);
void InitStack
www.eeworm.com/read/311535/13629619
c 栈操作.c
#include
#include
#define MAX 20
#define ElemType int
#define S (*p)
struct SqStack
{
ElemType elem[MAX];
int top;
};
main()
{
struct SqStack *q;
int i,y,cord;
www.eeworm.com/read/308708/13695149
cpp bo3-1.cpp
// bo3-1.cpp 顺序栈(存储结构由c3-1.h定义)的基本操作(9个)
Status InitStack(SqStack &S)
{ // 构造一个空栈S
if(!(S.base=(SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType))))
exit(OVERFLOW); // 存储分配失败
S.t
www.eeworm.com/read/308157/13707142
c 栈操作.c
#include
#include
#define MAX 20
#define ElemType int
#define S (*p)
struct SqStack
{
ElemType elem[MAX];
int top;
};
main()
{
struct SqStack *q;
int i,y,cord;
www.eeworm.com/read/307670/13717631
cpp bo3-1.cpp
// bo3-1.cpp 顺序栈(存储结构由c3-1.h定义)的基本操作(9个)
Status InitStack(SqStack &S)
{ // 构造一个空栈S
if(!(S.base=(SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType))))
exit(OVERFLOW); // 存储分配失败
S.t
www.eeworm.com/read/307328/13724114
c 停车场问题.c
//停车场管理程序
#include
#include
#define ERROR 0
#define price 5.00
typedef struct {
char status;
int num;
int time;
} car;
www.eeworm.com/read/151133/5685936
c 栈操作.c
#include
#include
#define MAX 20
#define ElemType int
#define S (*p)
struct SqStack
{
ElemType elem[MAX];
int top;
};
main()
{
struct SqStack *q;
int i,y,cord;
www.eeworm.com/read/121869/6297009
cpp criticalpath.cpp
//CriticalPath.cpp
# include
# include
# include
# include
# define MAX_VERTEX_NUM 20
# define ERROR 0
# define OK 1
# define YES 1
# define NO
www.eeworm.com/read/121869/6297076
cpp conversion.cpp
//Conversion.cpp
//Conversion from positive Deci. numeral to Octo. numeral Fucntion
#include
#include
#include
#include
#define STACK_INIT_SIZE 10