代码搜索:LinkStack
找到约 226 项符合「LinkStack」的源代码
代码结果 226
www.eeworm.com/read/390847/8437746
h lstack.h
/*lstack.h*/
#include"sj.h" /*调用自定义库函数*/
typedef struct node{
ElemType data;
struct node *next;
}StackNode;
typedef struct
{
struct node *top;
}LinkStack;
void
www.eeworm.com/read/486809/6529877
cpp mazelinkstack.cpp
#include
#include
#include
#include
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INFEASIBLE -1
#define OVERFLOW -2
#define
www.eeworm.com/read/390847/8437734
c lhuiwen.c
/*lhuiwen.c*/
typedef char ElemType;
#include"lstack.h" /*调用链式栈基本操作文件*/
#define ARRAYSIZE 20
void main()
{
int i,j=0;
StackNode *pp;
char m;
char
www.eeworm.com/read/366144/9829252
cpp qbfdag.cpp
// ------------------------------------------------------------------
// qbfdag.cpp
//
// This file contains member functions qbfdag.h. This is a class
// for maintain a directed acyclic graph (DAG)
www.eeworm.com/read/364713/9897614
cpp gettop_l.cpp
//GetTop_L.cpp
//This program is to get the top element of LinkStack
# include
# include
# include
# define Stack_Length 6
# define OK 1
# define ERROR 0
type
www.eeworm.com/read/364713/9897620
cpp pop_l.cpp
//Pop_L.cpp
//This program is to pop LinkStack
# include
# include
# include
# define Stack_Length 6
# define OK 1
# define ERROR 0
typedef int SElemType;
ty
www.eeworm.com/read/364713/9897623
cpp push_l.cpp
//Push_L.cpp
//This program is to push LinkStack
# include
# include
# include
# define Stack_Length 6
# define OK 1
# define ERROR 0
typedef int SElemType;