代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/316980/13513248
h simulation.h
typedef LinkList EventList; //事件链表类型,定义为有序链表
EventList ev; //事件表
Event en; //事件
LinkQueue Q1[9],Q2[4]; //等候理发的顾客队列
QElemType customer; //顾客记录
int t1
www.eeworm.com/read/264889/11296129
h link.h
//链表类的声明
//链表类的声明
#ifndef LINKEDLIST_CLASS
#define LINKEDLIST_CLASS
#ifndef NULL
const int NULL = 0;
#endif
template
class Node
{ Node *next; //next为指向后继结点的指针
public:
www.eeworm.com/read/264889/11296142
h 9_9.h
//链表类的声明
//链表类的声明
#ifndef LINKEDLIST_CLASS
#define LINKEDLIST_CLASS
#ifndef NULL
const int NULL = 0;
#endif
template
class Node
{ Node *next; //next为指向后继结点的指针
public:
www.eeworm.com/read/149335/12386792
h h1.h
#if!defined __lqq__
#define __lqq__
class LinkList //定义基类 LinkList
{
typedef struct node//定义链表节点类型
{
int data;
struct node *next;//next指向下一个数据
} ListDataNode;
//定义链表类型
typedef Lis
www.eeworm.com/read/131350/14148818
h link.h
// 链表操作的头文件
//作者 陆玥玥 学号06010811
#include
#include
#include
struct LNode
{
ElemType data;
LNode * next;
};
//初始化单链表
void InitList(LNode * &HL)
{
HL=NU
www.eeworm.com/read/230989/14262996
cpp ann.cpp
#include "animal.h"
int main(int argc, char* argv[])
{
//list *List;
fact *F,*T;
rule *Rule,*R;
char ch[8];
int i=1;
Fact=NULL; //事实链表初始为空
while(str[i][0]!='\0'){ //在事实链表中填入
www.eeworm.com/read/123878/14607672
cpp yuesefu.cpp
//约瑟夫环,利用循环链表,按题目所述方法操作
#include
#include
#define N 10
typedef struct node
{
int num,NO;
struct node *next;
}Node,*pNode;
void main()
{
//初始化循环链表
int i,m;
www.eeworm.com/read/475959/6771394
h link.h
//链表类的声明
//链表类的声明
#ifndef LINKEDLIST_CLASS
#define LINKEDLIST_CLASS
#ifndef NULL
const int NULL = 0;
#endif
template
class Node
{ Node *next; //next为指向后继结点的指针
public:
www.eeworm.com/read/475959/6771400
h 9_9.h
//链表类的声明
//链表类的声明
#ifndef LINKEDLIST_CLASS
#define LINKEDLIST_CLASS
#ifndef NULL
const int NULL = 0;
#endif
template
class Node
{ Node *next; //next为指向后继结点的指针
public:
www.eeworm.com/read/248954/12530194
h link.h
//链表类的声明
//链表类的声明
#ifndef LINKEDLIST_CLASS
#define LINKEDLIST_CLASS
#ifndef NULL
const int NULL = 0;
#endif
template
class Node
{ Node *next; //next为指向后继结点的指针
public: