代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/145150/12749259
cpp stackimplement.cpp
//
//****************************栈及其操作的实现文件************************
// StackImplement.cpp
// wjluo,2004年3月4日
//********************************************************************
//
#incl
www.eeworm.com/read/331854/12803735
txt 数制转换.txt
#include"stdio.h"
#include"stdlib.h"
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
typedef struct stack{
int *base;//栈底指针
int *top;//栈顶指针
int stacksize;//保存栈的长度
}sqstack;
void
www.eeworm.com/read/331851/12803762
txt 表达式求值).txt
#include"stdio.h"
#include"stdlib.h"
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
typedef struct stackf{
char *base;//栈底指针
char *top;//栈顶指针
int stacksize;//保存栈的长度
}sqstack;
ty
www.eeworm.com/read/142809/12916770
cpp initstack.cpp
//InitStack.cpp
//This program is to initialize a stack
# include
# include
# include
# define STACK_INIT_SIZE 100
# define STACKINCREMENT 10
# define OK 1
#
www.eeworm.com/read/142809/12916787
cpp gettop.cpp
//GetTop.cpp
//This program is to get the top element of SqStack
# include
# include
# include
# define STACK_INIT_SIZE 100
# define STACKINCREMENT 10
# define
www.eeworm.com/read/142809/12916790
cpp push.cpp
//Push.cpp
//This program is to Push SqStack
# include
# include
# include
# define STACK_INIT_SIZE 100
# define STACKINCREMENT 10
# define OK 1
# define ERRO
www.eeworm.com/read/142809/12916798
cpp pop.cpp
//Pop.cpp
//This program is to Pop SqStack
# include
# include
# include
# define STACK_INIT_SIZE 100
# define STACKINCREMENT 10
# define OK 1
# define ERROR
www.eeworm.com/read/329948/12925730
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/141644/12993291
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/327976/13053091
h sorthead.h
#include
#define MAX_VERTER_NUM 20
#define STACK_INIT_SIZE 20
#define STACKINCREMENT 10
/*********************************************************************
*Created on 2007.7.12
*C