代码搜索:SqStack

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

代码结果 774
www.eeworm.com/read/120515/6322085

h c3-1.h

/* c3-1.h 栈的顺序存储表示 */ #define STACK_INIT_SIZE 10 /* 存储空间初始分配量 */ #define STACKINCREMENT 2 /* 存储空间分配增量 */ typedef struct SqStack { SElemType *base; /* 在栈构造之前和销毁之后,base的值为NULL */ SElemT
www.eeworm.com/read/486816/6530378

cpp stack.cpp

#include "Operater Declare.h" Status InitStack(SqStack &S) { S.base=(SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType)); if(!S.base) { exit(OVERFLOW); } S.top=S.base; S.stacksi
www.eeworm.com/read/482102/6626752

h c3-1.h

/* c3-1.h 栈的顺序存储表示 */ #define STACK_INIT_SIZE 10 /* 存储空间初始分配量 */ #define STACKINCREMENT 2 /* 存储空间分配增量 */ typedef struct SqStack { SElemType *base; /* 在栈构造之前和销毁之后,base的值为NULL */ SElemT
www.eeworm.com/read/480948/6654385

h c3-1.h

/* c3-1.h 栈的顺序存储表示 */ #define STACK_INIT_SIZE 10 /* 存储空间初始分配量 */ #define STACKINCREMENT 2 /* 存储空间分配增量 */ typedef struct SqStack { SElemType *base; /* 在栈构造之前和销毁之后,base的值为NULL */ SElemT
www.eeworm.com/read/264807/11300739

h stacktree.h

#include #include #include #include #define Stack_Init_Size 100 typedef struct BtNode{//树的结构 char data; struct BtNode *lchild; struct BtNode *rchild; }
www.eeworm.com/read/262778/11391573

h c3-1.h

// c3-1.h 栈的顺序存储表示 #define STACK_INIT_SIZE 10 // 存储空间初始分配量 #define STACKINCREMENT 2 // 存储空间分配增量 struct SqStack { SElemType *base; // 在栈构造之前和销毁之后,base的值为NULL SElemType *top; // 栈顶指针
www.eeworm.com/read/404120/11491565

c 行编译器.c

#include #include #include #include #include #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 struct SqStack { char *bas
www.eeworm.com/read/402672/11530292

cpp 3_1.cpp

#include #include #include #include//exit() // 函数结果状态代码 #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 ty
www.eeworm.com/read/401879/11546653

cpp stackimplement.cpp

// //****************************栈及其操作的实现文件************************ // StackImplement.cpp // wjluo,2004年3月4日 //******************************************************************** // #incl
www.eeworm.com/read/401879/11546659

cpp stackimplement.cpp

// //****************************栈及其操作的实现文件************************ // StackImplement.cpp // wjluo,2004年3月4日 //******************************************************************** // #incl