代码搜索:SqStack

找到约 774 项符合「SqStack」的源代码

代码结果 774
www.eeworm.com/read/197075/8032402

cpp 括号匹配检验.cpp

#include"SqStack.h" #include //括号匹配与否的检验,要求表达式中只有两种括号[]和() int check(){ SqStack S; //存放括号 SElemType e; InitStack(S);//栈的初始化; char c; //存放输入的字符; while((c=getchar())!='
www.eeworm.com/read/197075/8032441

cpp 主函数.cpp

#include"SqStack.h" void main(){ SqStack sq;SElemType e; InitStack(sq); char str[30]; cout
www.eeworm.com/read/142809/12916783

cpp check.cpp

//Check.cpp //Check round brackets fucntion #include #include #include #include #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 #define O
www.eeworm.com/read/317251/13506833

cpp biaodashi.cpp

#include "stdio.h" #include "stdlib.h" #define MAX_SIZE 100 typedef struct { int *base; int *top; }SqStack; void InitStack(SqStack &S) { S.base = (int *)malloc(MAX_SIZE * sizeof(int
www.eeworm.com/read/316979/13513259

cpp beibao1.cpp

#include using namespace std; //----- 栈的顺序存储表示 ----- typedef struct { int *base; //存储空间基地址 int *top; //栈顶指针 int stacksize; //栈容量 } SqStack;
www.eeworm.com/read/121869/6297071

cpp check.cpp

//Check.cpp //Check round brackets fucntion #include #include #include #include #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 #define O
www.eeworm.com/read/404452/11485051

cpp untitled1.cpp

#include #include #include #define STACK_INIT_SIZE 100 //存储空间初始分配量 #define STACK_INCREMENT 10 //存储空间分配增量 #define OVERFLOW 1 #define ok 1 #define ERR
www.eeworm.com/read/403074/11522812

cpp biaodashi.cpp

#include #include #define OK 1 #define ERROR -1 #define OVERFLOW -2 #define DONE 2 #define MAX 1000 #define STACK_INIT_SIZE 10 #define STACKINCREMENT 2 typedef int
www.eeworm.com/read/401025/11565800

txt tingchechangguanlixitong.txt

#include "stdio.h" #include "stdlib.h" #include "string.h" #include "malloc.h" #include"iostream.h" #define stack_init_size 10 #define stackincrement 10 #define OK 1 #define NULL 0 #define ER
www.eeworm.com/read/252837/12261491

cpp suit_list.cpp

// ① 利用堆栈解决括号的匹配问题 #define size 100 #define stackincrement 10 typedef char SElemType; typedef struct { SElemType *base; SElemType *top; int stacksize; }SqStack; #include