代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/159245/10675841
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/159245/10675975
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/421647/10717305
c 70.c
#include
#include
#include
#include
#define STACK_INIT_SIZE 10
#define OK 1
#define TRUE 1
#define FALSE 0
#define ERROR 0
char PASSWORD[10]="123456";
www.eeworm.com/read/276181/10758446
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/349837/10797526
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/275347/10822906
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/274746/10855474
cpp 29135554949.cpp
#include
#include
#include
#include
#define OK 1
#define NULL 0
#define ERROR 0
#define OVERFLOW 0
#define STACK_INIT_SIZE 2 //停车场大小
typedef struc
www.eeworm.com/read/274564/10864482
c 12-2.c
/*12-2.c*/
#define STACK_INIT_SIZE 100
#define STACKINCMENT 10
#define K 100
typedef struct{
selemtype *base;
selemtype *top;
int stacksize;
}sqstack;
sqstack s;
int initstac
www.eeworm.com/read/273782/10901534
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