代码搜索:链表实现

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

代码结果 10,000
www.eeworm.com/read/287060/8728552

c 单链表倒序.c

#include struct fsb { int data; int flag; struct fsb * next; }; main() { struct fsb *p,*head,*sta,*end; int i,cishu,j; end=(struct fsb *)malloc(sizeof(struct fsb))
www.eeworm.com/read/287060/8728556

c 单链表1.c

#include #include struct roommate { char name; long num; int age; char birthplace; struct roommate *next; }; struct roommate *head,*cthis,*cnew; void ins_record(void)
www.eeworm.com/read/287060/8728565

c 单链表2.c

#include #include struct node{ int key; struct node *next; }; void creat_link(struct node *); main() { struct node *head=NULL; creat_li
www.eeworm.com/read/287045/8729107

cpp 单链表的运算.cpp

//-------------------实验三、单链表的运算------------------------- #include #include using namespace std; //---------------------------------------------------------------- class node{
www.eeworm.com/read/383145/8968433

cpp 单链表的创建.cpp

#include #include"stdlib.h"//malloc函数需要包含的头文件 struct nodetype { int data; nodetype *next; }typedef Linklist; Linklist *L;//touzhizhen nodetype *FindIndex(const int i) { if(i==
www.eeworm.com/read/383145/8968457

cpp 单链表置逆.cpp

#include #include"stdlib.h"//malloc函数需要包含的头文件 struct nodetype { int data; nodetype *next; }typedef Linklist; nodetype *create() { int d,n; nodetype *h=NULL,*s,*t,*p; cou
www.eeworm.com/read/282606/9080438

c 双链表正排序.c

#include #include #include struct list{ int data; struct list *next; struct list *pre; }; typedef struct list node; typedef node *link; link fr
www.eeworm.com/read/376627/9311691

c 双链表正排序.c

#include #include #include struct list{ int data; struct list *next; struct list *pre; }; typedef struct list node; typedef node *link; link fr
www.eeworm.com/read/376627/9311698

c 建立链表1.c

/* 链表建立程序 */ #include"stdio.h" #include #define NULL 0 #define LEN sizeof(struct student) struct student {long num; int score; struct student *next; }; int n; /*全局变量n*/ str
www.eeworm.com/read/376627/9311708

c 单链表倒序.c

#include struct fsb { int data; int flag; struct fsb * next; }; main() { struct fsb *p,*head,*sta,*end; int i,cishu,j; end=(struct fsb *)malloc(sizeof(struct fsb))