代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/122474/14687966
h stack.h
#include"common.h"
#define STACKINITSIZE 100
typedef struct{
ElementType *base;
ElementType *top;
int stacksize;
}SqStack;
status InitSqStack(SqStack &s);
status DestroySqStack(SqStack &s
www.eeworm.com/read/122473/14687995
h stack.h
#define STACKINITSIZE 100
#define STACKINCREMENT 10
typedef char ElementType;
typedef int status;
typedef struct{
ElementType *base;
ElementType *top;
int stacksize;
}SqStack;
status I
www.eeworm.com/read/221562/14737556
cpp stack.cpp
#include
#include
#include "../header/bitree.h"
#include "../header/queue.h"
#include "../header/stack.h"
#include "../header/expr.h"
Status InitStack( SqStack &S )
{
S.b
www.eeworm.com/read/221163/14756886
txt addandsubtacttomultiplybyinadditiontocalculatorvcsourcecode.txt
#include
#include
#include
/* 顺序栈的动态分配存储结构 */
#define STACK_INIT_SIZE 100 //栈初始容量
#define STACKINCREMENT 10 //栈容量增量
#undef SElemType //取消宏SElemType
#undef Sq
www.eeworm.com/read/220733/14790449
cpp a.cpp
#include
#include
#include
#include "Stack.h"
/*最后一个车厢的号码*/
long total=0;/*总的组合方案数目*/
int end;
Status Stack_Full(SqStack s)
{
if(s.top-s.base==end)
re
www.eeworm.com/read/120374/14804812
cpp mazeddddd.cpp
#include
#include
#include
#define Edge 10
#define PLUS 5
#define STA_SIZE 100
#define Startx 1
#define Starty 1
typedef struct Datastore{
int x, y, d,
www.eeworm.com/read/120254/14808878
cpp 6_56.cpp
#include
struct sqstack
{
char data;
sqstack* top;
};
class stack
{
sqstack * st;
public:
void init()
{
st=NULL;
}
void push(char );
char pop();
};
void stack::p
www.eeworm.com/read/120254/14808892
cpp 6_57.cpp
#include
#include
struct sqstack
{
char data;
sqstack* top;
};
class stack
{
sqstack * st;
public:
void init()
{
st=NULL;
}
void push(char );
char pop()
www.eeworm.com/read/118860/14851895
h mowang.h
#include
#include
#include
#define OK 1
#define OVERFLOW -2
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define INFERSIBLE -1
typedef int Status;
/
www.eeworm.com/read/118699/14858934
c postordertraverse.c
#include
#include
#define STACK_INIT_SIZE 10
#define STACKINCREMENT 5
typedef struct BiTNode //树结点
{
char data;
struct BiTNode *pLChild,*pRChild;
}BiTNode,*BiTree