代码搜索:链表实现

找到约 10,000 项符合「链表实现」的源代码

代码结果 10,000
www.eeworm.com/read/202643/15377358

cpp 循环链表.cpp

#include typedef struct LNode //循环链表的存储结构 { int data; struct LNode *next; }LNode, *LinkList; int ListLocate_L(LinkList L,int x) //在带头结点的循环链表L中查找与x相等的所
www.eeworm.com/read/202643/15377371

cpp 单链表.cpp

#include #include typedef struct LNode{ int data; struct LNode *next; }LNode, *LinkList; //线性单链表的存储结构 int ListInsert_L(LinkList &L,int i,int e) //在
www.eeworm.com/read/201037/15418019

txt 循环链表.txt

#include #include template class LinList; //前视定义,否则友元无法定义 template //模板类型为T class ListNode { friend class LinList; //定义类LinList为友元
www.eeworm.com/read/107624/15604541

cpp 单链表.cpp

#include class Time{ public: Time() { h = m = 0; } Time(int hr, int min) { if (hr>=0 && hr=0 && min
www.eeworm.com/read/107043/15614373

cpp 单链表.cpp

#include class Time{ public: Time() { h = m = 0; } Time(int hr, int min) { if (hr>=0 && hr=0 && min
www.eeworm.com/read/107030/15614548

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/107030/15614552

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/101253/15839322

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/101253/15839326

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/100753/15865270

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