代码搜索:链式
找到约 448 项符合「链式」的源代码
代码结果 448
www.eeworm.com/read/181330/9259103
doc 实验三 线性表的链式表示和其应用.doc
www.eeworm.com/read/349316/10835705
ppt 第4章 链式存储结构的表、 堆栈和队列.ppt
www.eeworm.com/read/425251/10366998
ppt 第2章 线性表2-链式表示和实现.ppt
www.eeworm.com/read/246158/12753293
cpp 9二叉树的链式存储结构的操作.cpp
#include
struct BiTree
{
char data;
BiTree *lchild,*rchild;
};
void Create(BiTree* &t)
{
char a;
cin>>a;
t=new BiTree;
if(a=='#')
t=NULL;
else
{
t->data=a;
C
www.eeworm.com/read/10651/187290
ppt ch02_2 线性表2-链式表示和实现.ppt
www.eeworm.com/read/315078/13552696
h stack.h
//////////////////////////////////////////////////////////////////////////
/////////////////////////链式栈模板类////////////////////////////////////
///////////////////////////////////////////////////////
www.eeworm.com/read/275469/10815967
txt readme.txt
========================================================================
CONSOLE APPLICATION : 链式队列
========================================================================
AppWizard has
www.eeworm.com/read/274763/10853892
h linkstack.h
//栈的链式存贮结构
typedef struct stacknode
{
int data;
struct stacknode *next;
}stacknode,*linkstack;
//出错信息处理函数
void lerrormessage(char *s)
{
cout
www.eeworm.com/read/133934/14017431
cpp 链式结构堆栈类的类模板实现及用堆栈类求解n皇后问题.cpp
//链式结构堆栈类的类模板实现及用堆栈类求解N皇后问题 编写:089906-36 刘爱贵
#include "iostream.h"
#include "math.h"
#define TRUE 1
#define FALSE 0
#define ERROR -1
typedef int Status;
//用模板实现的链式结构堆栈类
template
www.eeworm.com/read/185058/9059108
h stack2.h
#include
#include "StackNode.h" //链式栈的结点
template
class Stack2 //链式栈类
{
public:
StackNode *top; //指向栈顶