这几天一直在学习C语言结构体,所以上课写的小代码,在这里贴出,加上了注释,应该可以看懂的,链表头插入法,老师说在数据结构中,后插入法很少用到,因为太多的判断导致程序很复杂,所以在数据结构中常用到的就是头插入法了。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
| #include<stdio.h>
#include<stdlib.h>
define N 3
struct date //定义date函数体
{
int year;
int month;
int day;
struct date *next;
};
struct date *create(struct date *head)
{
int i;
struct date *p;
for(i=0;i<N;i++)
{
p=(struct date *)malloc(sizeof(struct date)); scanf("%d%d%d",&p->year,&p->month,&p->day); p->next=head; head=p; }
return head;
}
void print(struct date *head)
{
struct date *p=head;
if(head=NULL)
printf("连表为空"); else
{
while(p!=NULL) { printf("%d年%d月%d日\n",p->year,p->month,p->day); p=p->next ; } }
}
main()
{
struct date *head;
head=NULL;
head=create(head);
print(head);
}
|
今天我乖乖的去了图书馆,开始了我的学习之旅,不知道能坚持几天,坚持就是胜利,我会在博客中记录,监督提醒自己。 在这里我想说,我只所以继续背我的托福词汇,我想这点梦我都拖了三年了,何不一口气将他做完。青春没有几年了,不能留下遗憾。这就是青春,再迷茫的青春也有他的目标。