代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/195540/8143015
cpp 双向链表.cpp
#include"iostream.h"
#include"stdlib.h"
#define NULL 0
typedef struct DulNode
{
int data;
struct DulNode *prior;
struct DulNode *next;
}DulNode,*DuLinkList;
int length;
void PrintDu
www.eeworm.com/read/195540/8143017
plg 双向链表.plg
Build Log
--------------------Configuration: 双向链表 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\a\LOCALS
www.eeworm.com/read/195540/8143018
obj 双向链表.obj
www.eeworm.com/read/195540/8143021
pdb 双向链表.pdb
www.eeworm.com/read/195540/8143025
ilk 双向链表.ilk
www.eeworm.com/read/195540/8143027
exe 双向链表.exe
www.eeworm.com/read/195540/8143029
pch 双向链表.pch
www.eeworm.com/read/195540/8143031
dsp 双向链表.dsp
# Microsoft Developer Studio Project File - Name="双向链表" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/332349/12762995
cpp 双链表.cpp
template
class DNode{
friend Double;
private:
T data;
DNode *left,*right;
}
template
class Double{
public:
Double(){LeftEnd=RightEnd=0;};
~Double();
bo
www.eeworm.com/read/332124/12777047
c 单链表.c
/*单链表的各种操作*/
# define null 0
typedef char ElemType; /* 字符型数据*/
typedef struct LNode
{
ElemType data;
struct LNode *next;
};
setnull(struct LNode **p);
int length (struct LNode **p