代码搜索:SqStack

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

代码结果 774
www.eeworm.com/read/461110/7233655

cpp bo3-1.cpp

// bo3-1.cpp 顺序栈(存储结构由c3-1.h定义)的基本操作(9个) void InitStack(SqStack &S) { // 构造一个空栈S if(!(S.base=(SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType)))) exit(OVERFLOW); // 存储分配失败 S.top
www.eeworm.com/read/461110/7233700

cpp bo3-1.cpp

// bo3-1.cpp 顺序栈(存储结构由c3-1.h定义)的基本操作(9个) void InitStack(SqStack &S) { // 构造一个空栈S if(!(S.base=(SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType)))) exit(OVERFLOW); // 存储分配失败 S.top
www.eeworm.com/read/458669/7291830

cpp h.cpp

#include #include #define exit 0 #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 typedef char SElemType; typedef struct{ SElemType *base; SElemType *top; int s
www.eeworm.com/read/456942/7336446

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/456568/7345260

h test.h

/* This is a test for sub: tst1 */ #define NX 4 #define FNAME "t2" #define MAXERROR 2 #define SUB_SCALE 1 DATA x[NX] ={ 3276, 6553, 9830, 13107, }; DATA y[NX] ={ 328, 655, 983, 13
www.eeworm.com/read/454932/7381699

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/444277/7614820

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/442220/7657002

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/441423/7670585

cpp stackimplement.cpp

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

cpp stackimplement.cpp

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