代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/298817/7933170
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
www.eeworm.com/read/298817/7933281
c 单链表.c
#include
#include
struct roommate
{
char name[20];
long num;
int age;
char birthplace[20];
struct roommate *next;
};
struct roommate *head,*cthis,*cnew;
void
www.eeworm.com/read/298817/7933288
c 链表(递归).c
#include
#include
struct listNode{
int data;
struct listNode *nextPtr;
};
typedef struct listNode LISTNODE;
typedef LISTNODE * LISTNODEPTR;
LISTNODEPTR list(LISTNODEPTR , int); /
www.eeworm.com/read/398014/8009721
swf 链表_删除.swf
www.eeworm.com/read/398014/8009729
swf 链表_插入.swf
www.eeworm.com/read/397398/8053229
cpp 单链表.cpp
#include
class listNode
{
public:
int info;
listNode *next;
listNode(int a,listNode *p=0)
{
info=a;
next=p;
}
};
class list
{
private:
listNode *head,*tail;
publi
www.eeworm.com/read/295886/8135258
txt 链表插入.txt
i=2ʱ 610 619
i=3ʱ 610 619 699
i=4ʱ 147 610 619 699
i=5ʱ 12 147 610 619 699
i=6ʱ 12 31 147 610 619 699
i=7ʱ 12 31 32 147 610 619 699
i=8ʱ 12 31 32 147 610 619 699 711
www.eeworm.com/read/195540/8143010
opt 双向链表.opt
www.eeworm.com/read/195540/8143011
dsw 双向链表.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/195540/8143012