代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/290567/8475292
txt suan_shu_biao_da_shi_qiu_zhi.txt
#include
#include
#include
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
typedef struc
www.eeworm.com/read/400920/11566988
cpp biaodashi.cpp
#include
#include
///////////////////////////////////////
typedef struct{
double *base;
double *top;
int stacksize;
}Double_SqStack;
/////////////////////////////////
www.eeworm.com/read/400920/11566994
cpp bdashi.cpp
#include
#include
static int n=0;
//////////////////////////////////////////////
typedef struct{
double *base;
double *top;
int stacksize;
}Int_SqStack;
//////////
www.eeworm.com/read/367608/9740190
cpp sy2_1_1.cpp
/*-----------------------------------------------------------------------------------*/
/*----------------2008.2.6-------------------------------------------------------------------*/
/*------------
www.eeworm.com/read/377485/9274784
cpp algo3-1.cpp
#include
#include
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
typedef char SElemType;
typedef struct {
SElemType *base;
SElemType *top;
int stacksize;
}Sq
www.eeworm.com/read/400920/11566998
cpp biaodashi2.cpp
#include
#include
///////////////////////////////////////
typedef struct Double_SqStack{
double date;
Double_SqStack *next;
}Double_SqStack,*Link_Double_SqStack;
//////
www.eeworm.com/read/381390/9095148
cpp migong.cpp
/*迷宫问题*/
#include "stdio.h"
#include "stdlib.h"
#define STACKSIZE 100
#define r 64
#define m2 8 /*定义 m+2为m2*/
#define n2 10
www.eeworm.com/read/380561/9142627
cpp stackfortree.cpp
#include "stdafx.h"
#include
#include
#include
#include "..\\header\\Bitree.h"
Status InitStack(SqStack &S)
{
S.base = (BiTNode*)malloc(sizeof(BiTNode) *
www.eeworm.com/read/379679/9189220
cpp dazuoye1.cpp
#include
#include
#include
typedef struct{ //建立一个字符的堆栈
char *base;
char *top;
int stacksize;
}SqStack;
void InitStack(SqStack &s)
{
www.eeworm.com/read/175090/9560493
cpp function.cpp
#include "stdafx.h"
#include "head.h"
#include "stdio.h"
#include "malloc.h"
status push(sqstack &L,SElemType e)
{
*L.top++=e;
return OK;
}
status pop(sqstack &L,SElemType &e)
{