代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/387605/8663172
h expression.h
/*This program can solve simple formula
*by adder, subtraction, multiplication and division,
*whose operand is float, including minus float.
*/
//Expression.h
#if !defined (_EXPRESSION_HEAD_)
www.eeworm.com/read/376610/9312096
cpp stack.cpp
#include
#define MaxSize 10
typedef int ElemType;
typedef struct
{
int top;
ElemType data[MaxSize];
}SqStack;
typedef struct linknode
{
ElemType data;
struct linknode
www.eeworm.com/read/364713/9897535
cpp postordertraverse_2.cpp
//PostOrderTraverse.cpp
//This function is to PostOrder BiTree
# include
# include
# include
# define STACK_INIT_SIZE 100
# define STACKINCREMENT 10
# define
www.eeworm.com/read/364713/9897552
cpp preordertraverse_2.cpp
//PreOrderTraverse.cpp
//This function is to PreOrder BiTree
# include
# include
# include
# define STACK_INIT_SIZE 100
# define STACKINCREMENT 10
# define O
www.eeworm.com/read/364713/9897560
cpp inordertraverse_2.cpp
//InOrderTraverse.cpp
//This function is to InOrder BiTree
# include
# include
# include
# define STACK_INIT_SIZE 100
# define STACKINCREMENT 10
# define OK
www.eeworm.com/read/161836/10366675
h definition.h
#define INIT_SIZE 100 //存储空间初始分配量
#define INCREMENT 10 //存储空间分配增量
typedef struct{
int *top, *base; //栈顶指针和栈底指针
unsigned stacksize; //当前已分配的存储空间,以元素为单位
}SqStack;
int InitStack(SqStack *)
www.eeworm.com/read/161836/10366762
txt 数制转换.txt
definition.h
================================================
#define INIT_SIZE 100 //存储空间初始分配量
#define INCREMENT 10 //存储空间分配增量
typedef char ElemType;
typedef struct{
ElemType *top, *base;
www.eeworm.com/read/425218/10369453
c ch3_maze.c
/*
栈的应用:迷宫求解
author: kk.h
date: 2006.9
http://www.cocoon.org.cn
*/
#include "stdio.h"
#define StackSize 100
typedef struct{
int i,j;
}PosType;
typedef struct{
PosType pos;
int
www.eeworm.com/read/159245/10675857
cpp postordertraverse_2.cpp
//PostOrderTraverse.cpp
//This function is to PostOrder BiTree
# include
# include
# include
# define STACK_INIT_SIZE 100
# define STACKINCREMENT 10
# define
www.eeworm.com/read/159245/10675881
cpp preordertraverse_2.cpp
//PreOrderTraverse.cpp
//This function is to PreOrder BiTree
# include
# include
# include
# define STACK_INIT_SIZE 100
# define STACKINCREMENT 10
# define O