代码搜索:LinkStack
找到约 226 项符合「LinkStack」的源代码
代码结果 226
www.eeworm.com/read/184013/9126253
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/182355/9206826
c huiwen.c
#include
#define TRUE 1
#define FALSE 0
typedef struct Node
{
char data;
struct Node * next;
} Node; /* 定义节点 */
typedef Node * LinkStack; /* 定义栈 */
typedef struc
www.eeworm.com/read/181921/9226157
c 数制转换.c
#include
#include
typedef int dataType;
typedef struct stackNode{
dataType data;
struct stackNode *next;
}stackNode;
typedef struct linkStack{
stackNode *top;
}link
www.eeworm.com/read/181921/9226494
c 后缀表达式求值1.c
#include
#include
typedef struct stacknode
{
int data;
struct stacknode *next;
}stacknode;
typedef struct linkstack
{
stacknode *top;
}linkstack;
void initstack(li
www.eeworm.com/read/181921/9226743
c 后缀表达式求值1.c
#include
#include
typedef struct stacknode
{
int data;
struct stacknode *next;
}stacknode;
typedef struct linkstack
{
stacknode *top;
}linkstack;
void initstack(li
www.eeworm.com/read/181921/9226761
txt 后缀表达式求值1.txt
#include
#include
typedef struct stacknode
{
int data;
struct stacknode *next;
}stacknode;
typedef struct linkstack
{
stacknode *top;
}linkstack;
void initstack(li
www.eeworm.com/read/181921/9226945
cpp 数制转换.cpp
#include
#include
typedef int dataType;
typedef struct stackNode
{
dataType data;
struct stackNode *next;
}stackNode;
typedef struct linkStack
{
stackNode
www.eeworm.com/read/181921/9226972
txt 数制转换.txt
#include
#include
typedef int dataType;
typedef struct stackNode{
dataType data;
struct stackNode *next;
}stackNode;
typedef struct linkStack{
stackNode *top;
}link
www.eeworm.com/read/181815/9236509
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/181725/9240080
h stack.h
//类StackNode的声明,该类表示栈的结点
template
struct StackNode
{
T data;
StackNode* next;
};
//类LinkStack的声明
template
class LinkStack
{
private:
StackNode* top;