代码搜索:链表实现
找到约 10,000 项符合「链表实现」的源代码
代码结果 10,000
www.eeworm.com/read/472644/6872540
doc 链表的c语言实现之动态内存分配.doc
www.eeworm.com/read/461704/7221910
dat bookinfo.dat
[General Information]
书名=遗传算法·遗传算法:理论、应用及软件实现
作者=
页数=344
SS号=0
出版日期=
Vss号=99494095
www.eeworm.com/read/134500/13985742
txt 使用前必看.txt
敬爱的老师:
您好!
软件实现了对文件的加密与解密。
以本软件只能对英文、数字和标点进行加密。不支持中文!望大家谅解!
技术不纯属的地方请老师指点!
谢谢老师的指导!
此致
敬礼!!!!!
学生:杨航峰
www.eeworm.com/read/289579/8541800
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/289579/8541809
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/289579/8541818
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/289579/8541821
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/289579/8541830
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/287060/8728537
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/287060/8728545
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