代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/264965/11292524
cpp test_btree_app.cpp
//---------------------------------------------------------------------------
/*
例9-2 二叉链表类派生的应用类的测试程序。
*/
//---------------------------------------------------------------------------
#incl
www.eeworm.com/read/293928/8262300
c 9_9_3.c
/* ======================================== */
/* 程序实例: 9_9_3.c */
/* 链表的散列查找 */
/* ======================================== */
#include
#i
www.eeworm.com/read/100730/15866126
c 9_9_3.c
/* ======================================== */
/* 程序实例: 9_9_3.c */
/* 链表的散列查找 */
/* ======================================== */
#include
#i
www.eeworm.com/read/291797/8394805
h chuanniu.h
/*串纽扣游戏的头文件,主要定义了游戏面板的数组,一个链表*/
struct MapNode
{
int hang;
int lie;
int link;
};
MapNode mapbiao[144];//定空的格子的链表;
MapNode nodehead;
MapNode QiziLink[144];
int ChuanQiziNum=0;
int n
www.eeworm.com/read/191798/8422124
txt linklist3.txt
//单链表的类定义linklist3.h
#ifndef linklist3H
#define linklist3H
#define LEN 30
//定义ElemType为int
typedef int ElemType;
//单链表中结点的类型
typedef struct LNode{
ElemType data;//值域
LNode *next; //指针域
www.eeworm.com/read/380114/9163540
txt linklist3.txt
//单链表的类定义linklist3.h
#ifndef linklist3H
#define linklist3H
#define LEN 30
//定义ElemType为int
typedef int ElemType;
//单链表中结点的类型
typedef struct LNode{
ElemType data;//值域
LNode *next; //指针域
www.eeworm.com/read/375793/9349403
h lwgraph.h
// 加权图的邻接链表,派生于“加权有向图的邻接链表”. ADD,Delete操作上也就是行列重复做一下
// initial version
#ifndef LinkedWGraph_
#define LinkedWGraph_
#include "lwdgraph.h"
template
class LinkedWGraph : public Linked
www.eeworm.com/read/177109/9469434
cpp johnseph.cpp
#include
#include
//构件链表数据结构
typedef struct Node
{
int Num; //约瑟夫环成员所在的位置
int Pwd; //约瑟夫环成员的密码
struct Node *Next; //链表的下一成员的指针
}ListNode;
www.eeworm.com/read/329886/12928773
txt singlelink.txt
/*实验一:单链表的操作*/
#include
struct node{
int data;
node *next;
};
/*逆序生成单链表*/
node *creat()
{
node *head,*p,*q;
head=0; //首节点指针初始值为0
//cout
www.eeworm.com/read/239561/13271795
h dulinklist.h
//Dulinklist.h :包括双向循环链表的抽象数据类型
//双向循环链表的结点结构和一些基本操作
#include "stdafx.h"
typedef int Elemtype; //元素类型
typedef struct NodeType{
Elemtype data;
struct NodeType *prior,*next;
}NodeTy