代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/165808/10050878
c 4.2.c
//库函数和常量定义:
#include
#include
#include
#include
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define SINIT_SIZE
www.eeworm.com/read/165768/10051991
h head.h
#include
#include
#include
#include //INT_MAX等
#include
#include //atoi()
#include
#include //exit
#include
www.eeworm.com/read/359985/10112735
cpp function.cpp
//Function.cpp
Status InitStack(SqStack &S) // 构造一个空栈S
{
S.base=(SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType));
if(!S.base)
exit(OVERFLOW);
S.top=S.base;
S.stacksize=STAC
www.eeworm.com/read/359416/10147199
cpp excise3.cpp
//*****************************************************************************************
//程序作者:王国顺
//学 号:040630418
//题 目:调试顺序结构栈的基本操作(书本P44)
//*******************************************
www.eeworm.com/read/356710/10222831
txt stack_c.txt
#include
#include
#include
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define OK 1
#define Status int
#define EQUAL 1
#define OVERFLOW -1
#define STACK_INIT
www.eeworm.com/read/355913/10241603
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/355913/10241630
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/425971/10299882
cpp bo3-1.cpp
// bo3-1.cpp 顺序栈(存储结构由c3-1.h定义)的基本操作(9个)
Status InitStack(SqStack &S)
{ // 构造一个空栈S
if(!(S.base=(SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType))))
exit(OVERFLOW); // 存储分配失败
S.t
www.eeworm.com/read/354830/10322865
cpp 车站管理.cpp
#define MAXROOM 5
#define StackSize MAXROOM
#define OK 1
#define ERROR 0
#define NULL 0
#include
#include
#include
#include
typedef struct {//CA