代码搜索:链表实现

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

代码结果 10,000
www.eeworm.com/read/276181/10758042

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/276181/10758453

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/276181/10758462

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/418727/10934692

txt 链表合并.txt

#include #include typedef int elemtype; typedef struct node { elemtype data; struct node *next; }linklist; linklist *creatlist(int n) {
www.eeworm.com/read/271876/10977421

cpp 双向链表.cpp

//* * * * * * * * * * * * * * * * * * * * * * * * //*CHAPTER :2 (2_3) * //*PROGRAM :双向链表 * //*CONTENT :生成,插入,删除,定位,查找 * //* * * *
www.eeworm.com/read/270443/11038337

txt 合并链表.txt

#include "stdio.h" #include "stdlib.h" typdef sttruct Lnode { char data; struct Lnode *next; } ListNode; ListNode *create(void) { ListNode *p,*q,*head; printf("Please input the datas:");
www.eeworm.com/read/463805/7175072

txt 链表操作 .txt

#include"iostream.h" #include"process.h" //----------------------------------------------------------- template struct lian { lian * next; t zhi; lian() { next=NULL; zhi=0; }
www.eeworm.com/read/463805/7175073

txt 链表操作.txt

#include"iostream.h" #include"process.h" //----------------------------------------------------------- template struct lian { lian * next; t zhi; lian() { next=NULL; zhi=0; }
www.eeworm.com/read/458268/7299969

cpp 双向链表.cpp

//* * * * * * * * * * * * * * * * * * * * * * * * //*CHAPTER :2 (2_3) * //*PROGRAM :双向链表 * //*CONTENT :生成,插入,删除,定位,查找 * //* * * *
www.eeworm.com/read/458268/7300018

exe 双向链表.exe