代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/380114/9162265
cpp kuohaopipei.cpp
//刮号匹配的检验kuohaopipei.cpp
#include
#include
#include
typedef char Status;
typedef char SElemType;
#include "stack.cpp"
void main()
{SqStack *p;
int n,m=32,q=0;
www.eeworm.com/read/380114/9162494
txt kuohaopipei.txt
//刮号匹配的检验kuohaopipei.cpp
#include
#include
#include
typedef char Status;
typedef char SElemType;
#include "stack.cpp"
void main()
{SqStack *p;
int n,m=32,q=0;
www.eeworm.com/read/167250/9974362
cpp ss_khpp.cpp
#include "ss.cpp"
void Match(char a[]){
int i=0;
SqStack S;
ElemType e1,e2,e3;
InitStack(S);
printf("\n%s\n",a);
while(a[i]!='\0'){
e1=a[i];
switch(e1){
case '(':
www.eeworm.com/read/294906/3914708
c postordertraverse.c
Status PostOrderTraverse(BiTree T,Status(*Visit)(TElemType e)){
//后序遍历二叉树的非递归算法,对每个元素调用函数Visit
BiTree p = T,q = NULL;
SqStack S; InitStack(S); Push(S,p);
while (!StackEmpty(S)){
www.eeworm.com/read/165768/10051992
cpp bitreemain.cpp
#include
#include"head.h"
void main()
{
BiTree pTree;
InitBiTree(pTree);
SqStack S2;
InitStack(S2);
cout
www.eeworm.com/read/319844/13441400
cpp huiwen.cpp
#include"c1.h"
//顺序栈
typedef char SElemType;
#include"c3-1.h"
#include"bo3-1.cpp"
//顺序队列
typedef char QElemType;
#include"c3-3.h"
#include"bo3-4.cpp"
main()
{
SqStack s;
S
www.eeworm.com/read/167649/9957305
cpp graph.cpp
#include
#include "Graph.h"
#include "SQStack.h" //第三章的顺序栈
#include "SQQueue.h" //第三章的顺序队列
//构造函数
template
Graph :: Graph()
{ first=N
www.eeworm.com/read/291852/8392014
cpp 函数实现.cpp
int STACK_INIT_SIZE = 20 ;// 存储空间初始分配量
struct SqStack
{
SElemType *base1; // 左栈底指针
SElemType *top1; // 左栈顶指针
SElemType *base2; // 右栈底指针
SElemType *top2; // 右栈顶指针
int stac
www.eeworm.com/read/455290/7373540
cpp horse.cpp
//黎国庄 [liguozhuang@126.com]
#include
#include "SqStack.h"
#define n 8
int horizontal[]={2,1,-1,-2,-2,-1,1,2};
int vertical[]={-1,-2,-2,-1,1,2,2,1};
int board[n][n]={0};
int step=1;
www.eeworm.com/read/390847/8437742
c sy3_2.c
/* sy3_2.c */
typedef char ElemType; /*定义字符类型*/
#include "SQstack.h"
SeqStack OPTR, OPND; /*定义前一个为操作符栈,后一个为操作数栈*/
char expr[255] = ""; /*存放表达式串*/
char *ptr = expr;
int step =