代码搜索:SqStack

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

代码结果 774
www.eeworm.com/read/395911/8146379

cpp maze.cpp

# define Stack_Max 40 //使用顺序链表top指向最高位(有元素)的下一位 //# include "header.h" # include # include # include using namespace std; int curstep=1; struct Position {
www.eeworm.com/read/394560/8218413

txt migong.txt.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/394157/8243342

cpp main.cpp

#include "stdio.h"//标准输入输出 #include "stdlib.h"//包含malloc #include "time.h"//包含struct tm结构体 #include "conio.h"//包含getch()函数 #include "public.h"//结构体和常用函数 #include "queue.h"//队列操作函数 #include "stac
www.eeworm.com/read/394157/8243346

h stack.h

/**************************************stack.h***********************************************/ /* 定义常用栈操作函数 */ //#define STACK_INIT_SIZE 10//存储空间初始分配量 //#define STACKINCERMENT 1//存储空间分配增量 type
www.eeworm.com/read/192740/8288954

c 12-2.c

/*12-2.c*/ #define STACK_INIT_SIZE 100 #define STACKINCMENT 10 #define K 100 typedef struct{ selemtype *base; selemtype *top; int stacksize; }sqstack; sqstack s; int initstac
www.eeworm.com/read/370317/9605895

cpp shu3.cpp

#include #include #include #define MAX_TREE_SIZE 100 #define STACK_INIT_SIZE 100 //定义树的结构和栈的结构 typedef struct BiTNode { char data; struct BiTNode *l
www.eeworm.com/read/369684/9636425

cpp match.cpp

#include #include //定义顺序堆栈 #define STACK_SIZE 100 #define STACK_INC 10 #define Maxsize 100 typedef char Elem; typedef struct{ Elem *base; Elem *top;
www.eeworm.com/read/369640/9637503

c main.c

#include #include #define OK 0 #define ERROR -1 #define OVERFLOW -2 #define FALSE 0 #define TRUE !(FALSE) #define STACK_INIT_SIZE 20 #define STACKINCREMENT 10 typedef int
www.eeworm.com/read/369421/9648915

cpp criticalpath.cpp

//CriticalPath.cpp # include # include # include # include # define MAX_VERTEX_NUM 20 # define ERROR 0 # define OK 1 # define YES 1 # define NO
www.eeworm.com/read/369421/9649020

cpp conversion.cpp

//Conversion.cpp //Conversion from positive Deci. numeral to Octo. numeral Fucntion #include #include #include #include #define STACK_INIT_SIZE 10