代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/227283/14433526
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/227283/14433562
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/124933/14524095
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/124933/14524107
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/223822/14616481
c kalk.c
//这是一个用c语言编写的科学计算器
//可以进行四则运算,乘方运算和sin、cos、lg、ln的运算
//刚编出来的,经过调试,可以正常计算
//贴上来和各位分享
//希望各位能指出其中的繁冗之处
//或者是找出bug
//谢谢!
typedef char SElemType;
#include "string.h"
#include "
www.eeworm.com/read/223339/14644440
cpp algo0301.cpp
void conversion (int Num) { // 算法3.1
// 对于输入的任意一个非负十进制整数,打印输出与其等值的八进制数
ElemType e;
SqStack S;
InitStack(S); // 构造空栈
while (Num) {
Push(S, Num % 8);
N
www.eeworm.com/read/222762/14675078
cpp criticalpath.cpp
//CriticalPath.cpp
# include
# include
# include
# include
# define MAX_VERTEX_NUM 20
# define ERROR 0
# define OK 1
# define YES 1
# define NO
www.eeworm.com/read/222762/14675217
cpp conversion.cpp
//Conversion.cpp
//Conversion from positive Deci. numeral to Octo. numeral Fucntion
#include
#include
#include
#include
#define STACK_INIT_SIZE 10
www.eeworm.com/read/122580/14682246
c 栈操作.c
#include
#include
#define MAX 20
#define ElemType int
#define S (*p)
struct SqStack
{
ElemType elem[MAX];
int top;
};
main()
{
struct SqStack *q;
int i,y,cord;
www.eeworm.com/read/122479/14687863
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