代码搜索:SqStack

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

代码结果 774
www.eeworm.com/read/123822/14612247

c sqstack.c

#include "myhdr.h" #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 struct SqStack { char *base; char *top; int stacksize; }; void push(SqStack S,char e); void InitStack(SqStac
www.eeworm.com/read/218583/14914597

h sqstack.h

#include #include "Status.h" #define STACK_INIT_SIZE 100 typedef struct { char *base; char *top; }Stack_Char; typedef struct { double *base; double *top; }Stack_Doub
www.eeworm.com/read/392655/8331010

java sqstack.java

package exercise0; //定义栈 public class SqStack { public final int MAXSIZE =65535; private int top = 0; private int stacksize; private OneState[] base; public SqStack() { stacksiz
www.eeworm.com/read/202519/15379493

h sqstack.h

/* * 作者:antigloss * 最后修改:05-8-27 19:50 * 蚂蚁的 C/C++ 标准编程 * cpp.ga-la.com */ #ifndef SQSTACK_H #define SQSTACK_H #define INIT_SIZE 100 /* 存储空间初始分配量 */ #define INCREMENT 10 /* 存储空间分
www.eeworm.com/read/202519/15379495

c sqstack.c

/* * 作者:antigloss * 最后修改:05-8-27 19:50 * 蚂蚁的 C/C++ 标准编程 * cpp.ga-la.com */ #include #include #include "../header/sqstack.h" /* begin of ClearStack 05-8-27 19:
www.eeworm.com/read/456421/7349805

cpp main_sqstack.cpp

#include"c1.h" typedef int SElemType; // c3-1.h 栈的顺序存储表示 #define MAXSTACKSIZE 20 // 存储空间初始分配量 struct SqStack { SElemType *base; // 在栈构造之前和销毁之后,base的值为NULL SElemType *top; // 栈顶指针
www.eeworm.com/read/407522/11417874

zip p3_sqstack.zip

www.eeworm.com/read/314531/13564884

h bianyi.h

void youbu(int Ruleright[52][7],int Link[34][8]); #include #include #include #include #include #include #include typedef s
www.eeworm.com/read/314531/13564907

cpp za.cpp

#include"bianyi.h" void InitStack(SqStack &Sqstack) { Sqstack.base=(SElemType *)malloc(100*sizeof(SElemType)); if(!Sqstack.base) { cout
www.eeworm.com/read/471900/6304445

cpp a.cpp

#include typedef struct{ char *base; char *top; int stacksize; }Sqstack; int initstack(Sqstack &s){ s.base=new char[100]; if(!s.base)return 0; s.top=s.base; s.stacksize=10