代码搜索:SqStack
找到约 774 项符合「SqStack」的源代码
代码结果 774
www.eeworm.com/read/273645/10908011
txt 迷宫问题1.txt
/*
Name:迷宫
Author:wujilin
Description:输入时候一圈都应该是# 入口为(1,1) 如果有出口 出口为(M-2,M-2)
Date: 16-07-06 20:54
Copyright:wujilin
*/
#include
#include
#define M 10 //自己规定为10*10的迷宫
#d
www.eeworm.com/read/271876/10977451
cpp 堆栈操作 .cpp
//* * * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :3 (3_1) *
//*PROGRAM :堆栈操作 *
//*CONTENT :初始化,入栈,出栈,取栈顶元素 *
//*
www.eeworm.com/read/417351/10993111
cpp tostack.cpp
#include"stdio.h"
#include"string.h"
#include"stdlib.h"
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INFEASIBLE -1
#define OVERFLOW -2
#define
www.eeworm.com/read/470070/6924251
cpp 魔王语言.cpp
#include
#include
//#include
#define STACK_INIT_SIZE 100
#define STACK_INCREMENT 10
#define OVERFLOW 1
#define OK 1
#define ERROR 0
www.eeworm.com/read/458268/7300013
cpp 堆栈操作.cpp
//* * * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :3 (3_1) *
//*PROGRAM :堆栈操作 *
//*CONTENT :初始化,入栈,出栈,取栈顶元素 *
//*
www.eeworm.com/read/458268/7300079
cpp 堆栈操作.cpp
//* * * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :3 (3_1) *
//*PROGRAM :堆栈操作 *
//*CONTENT :初始化,入栈,出栈,取栈顶元素 *
//*
www.eeworm.com/read/456942/7336431
cpp bo3-1.cpp
// bo3-1.cpp 顺序栈(存储结构由c3-1.h定义)的基本操作(9个)
Status InitStack(SqStack &S)
{ // 构造一个空栈S
if(!(S.base=(SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType))))
exit(OVERFLOW); // 存储分配失败
S.t
www.eeworm.com/read/456713/7340408
txt calculation.txt
}SqStack;
void InitStack (SqStack &S)
{
//构造一个空栈s
S.base=(SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType));
if(!S.base) exit (-1);
S.top=S.base;
S.stacksize=ST
www.eeworm.com/read/456553/7345356
c maze.c
//计算机与信息技术学院 生物0501
//尚倩 第四次作业 迷宫
//05282016
#include
#include
#define STACK_INIT_SIZE 100//存储空间初始分配量
#define STACKINCREMENT 10//存储空间分配增量
#define TURE 1
#define FALSE 0
www.eeworm.com/read/454932/7381684
cpp bo3-1.cpp
// bo3-1.cpp 顺序栈(存储结构由c3-1.h定义)的基本操作(9个)
Status InitStack(SqStack &S)
{ // 构造一个空栈S
if(!(S.base=(SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType))))
exit(OVERFLOW); // 存储分配失败
S.t