代码搜索:LinkStack
找到约 226 项符合「LinkStack」的源代码
代码结果 226
www.eeworm.com/read/251182/12359704
cpp bo3-5.cpp
// bo3-5.cpp 链栈(存储结构由c2-2.h定义)的基本操作(9个)
// 大部分基本操作是由bo2-2.cpp和bo2-9.cpp中的函数改名得来
typedef SElemType ElemType; // 栈结点类型和链表结点类型一致
#include"c2-2.h"
typedef LinkList LinkStack; // LinkStack是指向栈结点的指
www.eeworm.com/read/130200/14203725
cpp bo3-5.cpp
// bo3-5.cpp 链栈(存储结构由c2-2.h定义)的基本操作(4个)
// 部分基本操作是由bo2-8.cpp中的函数改名得来
// 另一部分基本操作是由调用bo2-8.cpp中的函数(取特例)得来
typedef SElemType ElemType; // 栈结点类型和链表结点类型一致
#include"c2-2.h" // 单链表存储结构
typedef Li
www.eeworm.com/read/127961/14324707
cpp bo3-5.cpp
// bo3-5.cpp 链栈(存储结构由c2-2.h定义)的基本操作(9个)
// 大部分基本操作是由bo2-2.cpp和bo2-9.cpp中的函数改名得来
typedef SElemType ElemType; // 栈结点类型和链表结点类型一致
#include"c2-2.h"
typedef LinkList LinkStack; // LinkStack是指向栈结点的指
www.eeworm.com/read/124916/14526043
cpp aoe网络.cpp
// 自己设计一个项目,排出AOE网络,
// 并将数据输入计算机,用程序进行分析。
// 这一题我不会做,参考了陈文晖同学的代码
#include
#include
#include
struct Edgenode
{
int adjvex,time;
Edgenode *next;
};
www.eeworm.com/read/118192/14883181
c 4-3.c
#include "stdio.h"
typedef char DataType ;
typedef struct stacknode{
DataType data;
struct stacknode *next;
}StackNode;
typedef struct{
StackNode *top; //栈顶指针
}LinkStack;
//置栈空
void Init
www.eeworm.com/read/115447/15014257
c 4-3.c
#include "stdio.h"
typedef char DataType ;
typedef struct stacknode{
DataType data;
struct stacknode *next;
}StackNode;
typedef struct{
StackNode *top; //栈顶指针
}LinkStack;
//置栈空
void Init
www.eeworm.com/read/212828/15148565
c 4-3.c
#include "stdio.h"
typedef char DataType ;
typedef struct stacknode{
DataType data;
struct stacknode *next;
}StackNode;
typedef struct{
StackNode *top; //栈顶指针
}LinkStack;
//置栈空
void Init
www.eeworm.com/read/211477/15179876
h file.h
#define OK 1
#define ERROR 0
#define OVERFLOW -2
typedef int ElemType;
typedef int Status;
typedef struct SNode//定义节点类型
{
ElemType data;//存储元素值
SNode *next;//指向下一个节点
}SNode,*SLink;
typ
www.eeworm.com/read/211477/15179878
cpp function_define.cpp
/*出版人:袁志浩(2005144070)
应用数学与信息计算科学系B班
2007-4-27
*/
#include
#include"file.h"
#include
#include
/************************************************************
www.eeworm.com/read/210521/15197396
c huiwenshu.c
#include
#define false -1
#define OK 1
#define StackElementType char
typedef struct node
{ StackElementType data;
struct node *next;
}LinkStackNode;
typedef LinkStackNo