代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/455581/7369921
txt a.txt
1.先序遍历非递归算法
#define maxsize 100
typedef struct
{
Bitree Elem[maxsize];
int top;
}SqStack;
void PreOrderUnrec(Bitree t)
{
SqStack s;
StackInit(s);
p=t;
while (p!=null || !St
www.eeworm.com/read/318866/13468517
txt migong.txt
#include
#include
#define STACK_INIT_SIZE 100
typedef struct
{
int *base;
int *top;
int stacksize;
}sqstack;
int initstack(sqstack *s)
{
s->base=(int *)malloc(ST
www.eeworm.com/read/489085/6482597
cpp 1.cpp
typedef int SElemType;
typedef int QElemType;
#include "commdef.h"
#include "sqstack.h"
#include "SqQueue传引用.h"
#include"math.h"
void zhengshu(int N)
{int a;
SqStack S;
SElemType e;
Ini
www.eeworm.com/read/263618/11352488
cpp houzhuishi2.cpp
#include
#include
#define Max 30
#define Increase 10
typedef struct{
char *base;
char *top;
int stacksize;
}Sqstack;
void initStack(Sqstack &S){
S.base=new char[M
www.eeworm.com/read/274763/10853891
cpp main.cpp
#include
#include "sqStack.h"
#include "LinkStack.h"
sqstack s;
linkstack top;
void main()
{
int a=1,b=1;
int x,y;
cout
www.eeworm.com/read/202519/15379498
c main.c
/*
* 作者:antigloss
* 最后修改:05-8-27 19:50
* 蚂蚁的 C/C++ 标准编程
* cpp.ga-la.com
*/
#include
#include "header/sqstack.h"
#include "header/funs.h"
int main( void )
{
SqStack S;
www.eeworm.com/read/394157/8243354
h tccgl.h
/*************************************tccgl.h**********************************************/
/*
定义必要函数
*/
extern SqStack* Parking; //停车场
extern LinkQueue* Temroad; //便道
extern unsigned int D
www.eeworm.com/read/367608/9740169
cpp sy2_3.cpp
/*-------------------------判断中心对称---------2008.2.6----------------------------------------*/
#include "SStack.h"
#include "SList.h"
void main()
{
Sqlist L;
SqStack S;
ElemType
www.eeworm.com/read/380736/9130227
txt shiyan2).txt
//行编辑程序
#include
#define Stack_Size 100
#define MAX 500
typedef struct {
char *top;
char *base;
int stacklength;
}Sqstack,*Pstack;
www.eeworm.com/read/300853/13888573
txt 行编辑程序.txt
//行编辑程序
#include
#define Stack_Size 100
#define MAX 500
typedef struct {
char *top;
char *base;
int stacklength;
}Sqstack,*Pstack;