代码搜索:SqStack

找到约 774 项符合「SqStack」的源代码

代码结果 774
www.eeworm.com/read/441016/7677933

c shiyan1.c

#include #include typedef struct node { int elem; int zhi; struct node *next; }sqstack; sqstack *initstack(void); sqstack *addstack(sqstack *p1,sqstack *p2); void disps
www.eeworm.com/read/298817/7933278

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/397820/8020092

cpp 车厢调度5.cpp

#include #include #include typedef int SElemType; typedef int Status; int end;/*最后一个车厢的号码*/ long total=0;/*总的组合方案数目*/ /*---------------------栈的数据结构----------
www.eeworm.com/read/397814/8020359

c sack.c

#include #include #include #define StackSize 100//储存空间初始分配量 #define StackIncrement 10//储存空间分配增量 #define TURE 1 #define OVERFLOW 0 #define OK 1 #define ERROR
www.eeworm.com/read/197075/8032332

cpp 行编辑程序.cpp

#include"SqStack.h" #include void main(){ //利用字符栈S,从终端接受一行经过处理输出。 //约定退格符是#,退行符@。 //例如,输入:whli##ilr#e(s#*s) // outcha@putchar(*s=#++); //则实际上应该是下列两行: //
www.eeworm.com/read/197075/8032418

cpp 数制的转换.cpp

#include"SqStack.h" int conversion(){ SqStack S;int N,i; InitStack(S); coutN;cout
www.eeworm.com/read/296586/8090915

cpp parking.cpp

#include"stdio.h" #include"stdlib.h" #include"malloc.h" int PARKMENT_SIZE; float ave1,ave; #define STACKINCREMENT 1 typedef struct{ int num; float time; }SQ; typedef
www.eeworm.com/read/296586/8090922

~cpp parking.~cpp

#include"stdio.h" #include"stdlib.h" #include"malloc.h" int PARKMENT_SIZE; float ave1,ave; #define STACKINCREMENT 1 typedef struct{ int num; float time; }SQ; typedef
www.eeworm.com/read/396450/8107198

cpp 魔王语言2.cpp

#include #include #include const int STACK_INIT_SIZE=100; const int MAXQSIZE=100; typedef char SElemType,QElemType; typedef struct { SElemType *base; //顺序栈的
www.eeworm.com/read/396114/8125408

cpp topologicalsort.cpp

#include #include #define MAX_VEXTEX_NUM 20 #define M 20 #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 #define OK 1 #define ERROR 0 typedef int ElemType; typedef