代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/363342/9958200
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/363342/9958208
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/167125/9980240
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/167125/9980246
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/167125/9980247
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/167125/9980252
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/163932/10139473
c 单链表的处理.c
#include
#include
#define MAX 20
#define ELEMTP int
#define v (*p)
struct node
{
ELEMTP data;
struct node *next;
};
struct node *p,*q,*s,*head;
int j=0,i,k;
main(
www.eeworm.com/read/358723/10180683
ppt 第11章_链表.ppt
www.eeworm.com/read/280892/10281799
zip 单链表的删除.zip
www.eeworm.com/read/280892/10281805