服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C/C++ - C语言链表实现图书管理系统

C语言链表实现图书管理系统

2021-06-18 14:43威成天下 C/C++

这篇文章主要为大家详细介绍了C语言链表实现图书管理系统,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

之前参照网上的资料用链表实现了图书管理系统,包括简单的增删改查功能以及借书还书功能,我是VC6.0下写的一个控制台程序,格式参照的网上的。在动手编码之前,你需要理清自己的思路。首先,需要确定图书馆里系统中主要有那几个对象,这里我写了学生对象和图书对象。不妨在纸上写出或画出它们主要包括哪些属性以及其可能的对应关系,这里根据不同人的要求会有所不同。清楚这些之后,就可以设计学生和图书的数据结构,比如这里我用的结构体存储其信息。然后就需要考虑,我想要哪些功能,除了基本的增删改查之外,我还想要哪些功能?比如借书、还书,我怎么表示这之间的关系?可以通过图书的属性来记录该书的状态,及是否被借走,谁借了。主要就是这个思路,图书的增删改查是通过链表实现的,当然也可以用数组实现,只不过那会浪费较多的空间。

?
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
// MyLibManSys.cpp : Defines the entry point for the console application. <br>
//
 
#include "stdafx.h"
#include "iostream"
 
struct book{
  int id;
  char title[20];
  char author[20];
  double price;
  char state[20];
  int student_id;
  char student_name[20];
  struct book* next;
};
 
struct student{
  int id;
  char name[20];
  char sex[10];
  char borrow_book[30];
  struct student* next;
};
void Print_Book(struct book *head_book);
void Print_Student(struct student *head_student);
struct book *Create_New_Book();/*创建新的图书库*/
struct student *Create_New_Student();/*创建新的学生库*/
struct book *Insert_Book(struct book *head_book,struct book *new_book);/*增加图书,逐个添加*/
//void Insert_Book(struct book *head_book,struct book *new_book);/*增加图书,逐个添加*/
//函数的参数是一个指针时,不要在函数体内部改变指针所指的地址,那样毫无作用,需要修改的只能是指针所指向的内容。即应把指针当作常量
struct student *Insert_Student(struct student *head_student,struct student *new_student);/*增加学生,逐个添加*/
struct book *Search_Book_ById(int id,struct book *head_book); 
struct book *Search_Book_ByTitle(char *title,struct book *head_book); 
struct book *Search_Book_ByPrice(double price_h,double price_l,struct book *head_book);
//bool Delete_Book(int id,book* head_book);
struct book* Delete_Book(int id,book* head_book);
struct student *Search_Student(int id,struct student *head_student);
struct student* Delete_Student(int id,student* head_student);
 
void Lent_Book(int id,int student_id,struct book *head_book,struct student *head_student);
void Back_Book(int id,int student_id,struct book *head_book,struct student *head_student);
 
int main()
{
  struct book* head_book,*p_book;
  struct student* head_student, *p_student;
  int choice, f, id, student_id;
  int m = 1;
  char name[20],sex[10];
  char title[20];
  double price_h,price_l,price;
  char author[20];
  int size_book=sizeof(struct book);
  int size_student=sizeof(struct student);
  printf("\n欢迎您第一次进入图书管理系统!\n\n"); 
  printf("----->[向导]----->[新建图书库]\n\n"); 
  printf("注意:当输入图书编号为0时,进入下一步.\n\n"); 
  head_book=Create_New_Book(); 
  system("cls");
  //Print_Book(head_book);
  printf("\n欢迎您第一次进入图书管理系统!\n\n"); 
  printf("----->[向导]----->[新建会员库]\n\n"); 
  printf("注意:当输入会员学号为0时,进入主菜单.\n\n");
  head_student=Create_New_Student(); 
  system("cls");
  //Print_Student(head_student);
  do{
    printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n"); 
    printf("\n"); 
    printf("\t\t\t[1]:借书办理\t");printf(" [6]:还书办理\n"); 
    printf("\n"); 
    printf("\t\t\t[2]:查询图书\t");printf(" [7]:查询学生\n"); 
    printf("\t\t\t[3]:添加图书\t");printf(" [8]:添加学生\n"); 
    printf("\t\t\t[4]:删除图书\t");printf(" [9]:删除学生\n"); 
    printf("\t\t\t[5]:遍历图书\t");printf("[10]:遍历学生\n\n"); 
    printf("\t\t\t〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓\n\n"); 
    printf("\t\t\t0:退出\n\n"); 
    printf("请选择<0~10>:"); 
    scanf("%d",&choice);
    switch(choice){
    case 0:
      system("cls"); 
      printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n"); 
      printf("\n谢谢您的使用!\n\n"); 
      break;
    case 1:
      system("cls");
      printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");
      printf("输入借出图书编号:\n"); 
      scanf("%d",&id);
      printf("输入借入学生学号:\n");
      scanf("%d",&student_id);
      Lent_Book(id,student_id,head_book,head_student);
      break;
    case 2:
      system("cls"); 
      printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n"); 
      printf("1.按编号查询\n\n"); 
      printf("2.按名称查询\n\n"); 
      printf("3.按价格区间查询\n\n"); 
      printf("0.返回主菜单\n\n"); 
      printf("请选择:"); 
      scanf("%d",&f); 
      if(f==1){ 
        printf("请输入查询图书编号:"); 
        scanf("%d",&id); 
        printf("相关信息如下:\n\n"); 
        head_book=Search_Book_ById(id,head_book); 
        break
      
      else if(f==2){
        getchar();
        printf("请输入查询图书名称:"); 
        gets(title);
        printf("相关信息如下:\n\n"); 
        head_book=Search_Book_ByTitle(title,head_book); 
        break
      
      else if(f==3){ 
        printf("请输入最高价格:"); 
        scanf("%lf",&price_h); 
        printf("请输入最低价格:"); 
        scanf("%lf",&price_l); 
        printf("相关信息如下:\n\n"); 
        head_book=Search_Book_ByPrice(price_h,price_l,head_book); 
        break
      
      else if(f==0){ 
        break
      
      break;
    case 3:
      system("cls"); 
      printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n"); 
      printf("请输入图书编号:"); 
      scanf("%d",&id); 
      printf("请输入图书名称:"); 
      scanf("%s",title); 
      printf("请输入作者名字:"); 
      scanf("%s",author); 
      printf("请输入单价:"); 
      scanf("%lf",&price); 
      printf("\n");
      struct book *ptr_b;
      for(ptr_b=head_book;ptr_b;ptr_b=ptr_b->next) 
      {
        if(ptr_b->id==id) 
        
          printf("此编号图书已存在\n"); 
          m=0; 
          break
        
      
      if(m){ 
        p_book=(struct book *)malloc(size_book); 
        strcpy(p_book->title,title); 
        p_book->id=id; 
        p_book->price=price; 
        p_book->student_id=-1; 
        strcpy(p_book->author,author); 
        strcpy(p_book->state,"存在");  
        strcpy(p_book->student_name,"待定"); 
      // head_book=Insert_Book(head_book,p_book); 
        Insert_Book(head_book,p_book);
        printf("\n添加图书成功!\n\n"); 
      
      break;
    case 4:
      system("cls"); 
      printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n"); 
      printf("输入删除图书编号:\n"); 
      scanf("%d",&id); 
      /*if(Delete_Book(id,head_book)){
        printf("\n删除图书成功!\n\n");
      }else{
        printf("删除失败");
      }*/
      head_book = Delete_Book(id,head_book);
      break;
    case 5: 
      system("cls"); 
      printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n"); 
      Print_Book(head_book); 
      break;
    case 6:
      system("cls");
      printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");
      printf("输入归还图书编号:\n"); 
      scanf("%d",&id);
      printf("输入归还学生学号:\n");
      scanf("%d",&student_id);
      Back_Book(id,student_id,head_book,head_student);
      break;
    case 7:
      system("cls"); 
      printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n");   
      printf("请输入查询学生学号:"); 
      scanf("%d",&id); 
      printf("相关信息如下:\n\n"); 
      head_student=Search_Student(id,head_student); 
      break;
    case 8:
      system("cls"); 
      printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n"); 
      printf("请输入学生编号:"); 
      scanf("%d",&id); 
      printf("请输入学生姓名:"); 
      scanf("%s",name); 
      printf("请输入学生性别:"); 
      scanf("%s",sex);  
      printf("\n");
      struct student *ptr_s;
      for(ptr_s=head_student;ptr_s;ptr_s=ptr_s->next) 
      {
        if(ptr_s->id==id) 
        
          printf("此学号学生已存在\n"); 
          m=0; 
          break
        
      
      if(m){ 
        p_student=(struct student *)malloc(size_student);  
        p_student->id=id;  
        strcpy(p_student->name,name); 
        strcpy(p_student->sex,sex);  
        strcpy(p_student->borrow_book,"无"); 
        head_student=Insert_Student(head_student,p_student); 
        printf("\n添加学生成功!\n\n"); 
      
      break;
    case 9:
      system("cls"); 
      printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n"); 
      printf("输入删除学生学号:\n"); 
      scanf("%d",&id); 
      head_student = Delete_Student(id,head_student);
      break;
    case 10:
      system("cls"); 
      printf("\n\t\t\t〓〓〓〓〓图书管理系统〓〓〓〓〓\n\n"); 
      Print_Student(head_student);
    }
  }while(choice!=0);
  return 0;
}
 
struct book *Create_New_Book(){
  struct book *head_book,*p_book; 
  int id, tag; 
  double price; 
  char title[20],author[20]; 
  int size_book=sizeof(struct book); 
    
  head_book=NULL; 
  printf("请输入图书编号:"); 
  scanf("%d",&id); 
  printf("请输入图书名称:"); 
  scanf("%s",title); 
  printf("请输入作者名字:"); 
  scanf("%s",author); 
  printf("请输入单价:"); 
  scanf("%lf",&price); 
  printf("\n"); 
  while(true){ 
    p_book=(struct book *)malloc(size_book); 
    strcpy(p_book->title,title); 
    p_book->id=id; 
    p_book->price=price; 
    p_book->student_id=-1; 
    strcpy(p_book->author,author); 
    strcpy(p_book->state,"存在");  
    strcpy(p_book->student_name,"待定"); 
    head_book=Insert_Book(head_book,p_book);
    printf("是否继续?继续输入1,退出按任意键\n");
    scanf("%d",&tag);
    if(tag!=1){
      break;
    }
    printf("请输入图书编号:"); 
    scanf("%d",&id); 
    printf("请输入图书名称:"); 
    scanf("%s",title); 
    printf("请输入作者名字:"); 
    scanf("%s",author); 
    printf("请输入单价:"); 
    scanf("%lf",&price); 
    printf("\n"); 
  
  return head_book;
}
 
struct student *Create_New_Student(){
  struct student *head_student,*p_student; 
  int id, tag;
  char sex[10];
  char name[20]; 
  int size_student=sizeof(struct student); 
    
  head_student=NULL; 
  printf("请输入学生编号:"); 
  scanf("%d",&id); 
  printf("请输入学生姓名:"); 
  scanf("%s",name); 
  printf("请输入学生性别:"); 
  scanf("%s",sex);  
  printf("\n"); 
  while(true){ 
    p_student=(struct student *)malloc(size_student);  
    p_student->id=id;  
    strcpy(p_student->name,name); 
    strcpy(p_student->sex,sex);  
    strcpy(p_student->borrow_book,"无"); 
    head_student=Insert_Student(head_student,p_student); 
    printf("是否继续?继续输入1,退出按任意键\n");
    scanf("%d",&tag);
    if(tag!=1){
      break;
    }
    printf("请输入学生编号:"); 
    scanf("%d",&id); 
    printf("请输入学生姓名:"); 
    scanf("%s",name); 
    printf("请输入学生性别:"); 
    scanf("%s",sex);  
    printf("\n"); 
  
  return head_student;
}
 
struct book *Insert_Book(struct book *head_book,struct book *new_book){
  struct book *p,*q;
 
  p=q=head_book;
   
  if(head_book==NULL){  //单向链表为空的情况
    head_book=new_book;
    new_book->next = NULL;
  }else{
    while((new_book->id>p->id)&&(p->next!=NULL)){
      q = p;
      p = p->next;
    }
    if(new_book->id<=p->id){
      new_book->next=p;
      if(head_book==p)
        head_book=new_book;
      else
        q->next = new_book;
    }else{
      p->next=new_book;
      new_book->next=NULL;
    }
  }
  return head_book;
};
 
struct student *Insert_Student(struct student *head_student,struct student *new_student){
  struct student *p,*q;
 
  p=q=head_student;
   
  if(head_student==NULL){ //单向链表为空的情况
    head_student=new_student;
    new_student->next = NULL;
  }else{
    while((new_student->id>p->id)&&(p->next!=NULL)){
      q = p;
      p = p->next;
    }
    if(new_student->id<=p->id){
      new_student->next=p;
      if(head_student==p)
        head_student=new_student;
      else
        q->next = new_student;
    }else{
      p->next=new_student;
      new_student->next=NULL;
    }
  }
  return head_student;
}
 
struct book *Search_Book_ById(int id,struct book *head_book){
  struct book *ptr_book = head_book; 
  int flag=0; 
  while(ptr_book!=NULL) 
  {
    if(ptr_book->id==id){
      printf("图书编号:%d\n",ptr_book->id);
      printf("图书名称:%s\n",ptr_book->title);
      printf("图书单价:%.2lf\n",ptr_book->price);
      printf("图书作者:%s\n",ptr_book->author);
      printf("存在状态:%s\n",ptr_book->state);
      printf("借书人姓名:%s\n",ptr_book->student_name); 
      printf("学号:%d\n",ptr_book->student_id);
      printf("\n");
      flag++;
    }
    if(flag>0)
    {
      break;
    }
    ptr_book = ptr_book->next;
  
  if(flag==0){ 
      printf("暂无此图书信息!\n\n"); 
  
  return head_book; 
};
 
struct book *Search_Book_ByTitle(char *title,struct book *head_book){
  struct book *ptr_book = head_book; 
  int flag=0; 
  while(ptr_book!=NULL) 
  
    if(strcmp(ptr_book->title,title)==0){ 
      printf("图书编号:%d\n",ptr_book->id); 
      printf("图书名称:%s\n",ptr_book->title); 
      printf("图书单价:%.2lf\n",ptr_book->price); 
      printf("图书作者:%s\n",ptr_book->author); 
      printf("存在状态:%s\n",ptr_book->state); 
      printf("借书人姓名:%s\n",ptr_book->student_name);  
      printf("学号:%d\n",ptr_book->student_id); 
      printf("\n"); 
      flag++; 
    }
    if(flag>0)
    {
      break;
    }
    ptr_book = ptr_book->next;
  
  if(flag==0){ 
      printf("暂无此图书信息!\n\n"); 
  
  return head_book;
};
 
struct book *Search_Book_ByPrice(double price_h,double price_l,struct book *head_book){
  struct book *ptr_book = head_book; 
  int flag=0; 
  while(ptr_book!=NULL) 
  
    if(ptr_book->price>=price_l&&ptr_book->price<=price_h){ 
      printf("图书编号:%d\n",ptr_book->id); 
      printf("图书名称:%s\n",ptr_book->title); 
      printf("图书单价:%.2lf\n",ptr_book->price); 
      printf("图书作者:%s\n",ptr_book->author); 
      printf("存在状态:%s\n",ptr_book->state); 
      printf("借书人姓名:%s\n",ptr_book->student_name);  
      printf("学号:%d\n",ptr_book->student_id); 
      printf("\n"); 
      flag++; 
    }
    ptr_book = ptr_book->next;
  
  if(flag==0){ 
      printf("暂无此图书信息!\n\n"); 
  
  return head_book;
}
 
/*bool Delete_Book(int id,book* head_book){
  bool flag=true;
  struct book *p,*q;
  p=q=head_book;
  if(p->id==id&&p->next==NULL){
    head_book=NULL;
  }
 
  while(p->id!=id&&p->next!=NULL){
    q=p;
    p=p->next;
  }
  if(p->id==id){
    if(p==head_book){
      head_book=p->next;
    }else{
      q->next=p->next;
    }
    free(p);
  }else{
    flag=false;
    printf("找不到该书");
  }
  return flag;
};*/
 
struct book* Delete_Book(int id,book* head_book){
  bool flag=true;
  struct book *p,*q;
  p=q=head_book;
 
  while(p->id!=id&&p->next!=NULL){
    q=p;
    p=p->next;
  }
  if(p->id==id){
    if(p==head_book){
      head_book=p->next;
    }else{
      q->next=p->next;
    }
 
    free(p);
    printf("删除成功!\n");
  }else{
    flag=false;
    printf("找不到该书");
  }
  return head_book;
};
 
struct student* Delete_Student(int id,student* head_student){
  bool flag=true;
  struct student *p,*q;
  p=q=head_student;
 
  while(p->id!=id&&p->next!=NULL){
    q=p;
    p=p->next;
  }
  if(p->id==id){
    if(p==head_student){
      head_student=p->next;
    }else{
      q->next=p->next;
    }
 
    free(p);
    printf("删除成功!\n");
  }else{
    flag=false;
    printf("找不到该学生");
  }
  return head_student;
};
 
struct student *Search_Student(int id,struct student *head_student){
  struct student *ptr_student = head_student; 
  int flag=0; 
  while(ptr_student!=NULL) 
  {
    if(ptr_student->id==id){
      printf("学号:%d\n",ptr_student->id);
      printf("姓名:%s\n",ptr_student->name);
      printf("性别:%s\n",ptr_student->sex);
      printf("借书:%s\n",ptr_student->borrow_book); 
      printf("\n");
      flag++;
    }
    if(flag>0)
    {
      break;
    }
    ptr_student = ptr_student->next;
  
  if(flag==0){ 
      printf("暂无此学生信息!\n\n"); 
  
  return head_student; 
};
 
void Lent_Book(int id,int student_id,struct book *head_book,struct student *head_student){
  struct book* p=head_book;
  struct student* q=head_student;
  if(p==NULL||q==NULL){
    printf("书本或学生不存在\n");
    return;
  }
  while(p!=NULL&&q!=NULL){
    if(p->id!=id){
      p=p->next;
    }
    if(q->id!=student_id){
      q=q->next;
    }
    if(p->id==id&&q->id==student_id){
      break;
    }
  }
  if(p==NULL||q==NULL){
    printf("书本或学生不存在\n");
    return;
  }else{
    if(strcmp(p->state,"存在")!=0){
      printf("书已借出!抱歉!");
      return;
    }else{
      p->student_id=student_id;
      strcpy(p->student_name,q->name);
      strcpy(q->borrow_book,p->title);
      strcpy(p->state,"已借出");
      printf("已成功借出!/n");
    }
  }
};
 
void Back_Book(int id,int student_id,struct book *head_book,struct student *head_student){
  struct book* p=head_book;
  struct student* q=head_student;
  if(p==NULL||q==NULL){
    printf("书本或学生不存在\n");
    return;
  }
  while(p!=NULL&&q!=NULL){
    if(p->id!=id){
      p=p->next;
    }
    if(q->id!=student_id){
      q=q->next;
    }
    if(p->id==id&&q->id==student_id){
      break;
    }
  }
  if(p==NULL||q==NULL){
    printf("书本或学生不存在\n");
    return;
  }else{
    if(strcmp(p->state,"存在")==0){
      printf("书未借出!抱歉!");
      return;
    }else{
      p->student_id=-1;
      strcpy(p->student_name,"待定");
      strcpy(q->borrow_book,"无");
      strcpy(p->state,"存在");
      printf("已成功归还!/n");
    }
  }
};
 
void Print_Book(struct book *head_book){
  struct book* p=head_book;
 
  if(p==NULL){ 
    printf("\n无记录\n\n"); 
    return
  
  printf("\n图书编号\t图书名称\t图书单价\t图书作者\n\n"); 
  while (p!=NULL)
  {
    printf("%d\t\t%s\t\t%.2lf\t\t%s\n\n",p->id,p->title,p->price,p->author);
    p = p->next;
  }
}
 
void Print_Student(struct student *head_student){
  struct student* p=head_student;
 
  if(p==NULL){ 
    printf("\n无记录\n\n"); 
    return
  
  printf("\n学生姓名\t学生性别\t学生学号\n\n"); 
  while (p!=NULL)
  {
    printf("%s\t\t%s\t\t%d\n",p->name,p->sex,p->id);
    p = p->next;
  }
}

代码可以直接运行,这里我都是在控制台上直接显示的,如果想从文件读取和向文件写入学生和图书信息,只需要把相应的printf和scanf部分改为文件操作。这个是很久之前写的,详细的函数以及功能讲解这里就不介绍了。欢迎大家讨论和指导。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/secyb/article/details/51348851

延伸 · 阅读

精彩推荐
  • C/C++使用C++制作简单的web服务器(续)

    使用C++制作简单的web服务器(续)

    本文承接上文《使用C++制作简单的web服务器》,把web服务器做的功能稍微强大些,主要增加的功能是从文件中读取网页并返回给客户端,而不是把网页代码...

    C++教程网5492021-02-22
  • C/C++C语言实现双人五子棋游戏

    C语言实现双人五子棋游戏

    这篇文章主要为大家详细介绍了C语言实现双人五子棋游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    两片空白7312021-11-12
  • C/C++C语言main函数的三种形式实例详解

    C语言main函数的三种形式实例详解

    这篇文章主要介绍了 C语言main函数的三种形式实例详解的相关资料,需要的朋友可以参考下...

    ieearth6912021-05-16
  • C/C++c/c++实现获取域名的IP地址

    c/c++实现获取域名的IP地址

    本文给大家汇总介绍了使用c/c++实现获取域名的IP地址的几种方法以及这些方法的核心函数gethostbyname的详细用法,非常的实用,有需要的小伙伴可以参考下...

    C++教程网10262021-03-16
  • C/C++关于C语言中E-R图的详解

    关于C语言中E-R图的详解

    今天小编就为大家分享一篇关于关于C语言中E-R图的详解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看...

    Struggler095962021-07-12
  • C/C++深入C++拷贝构造函数的总结详解

    深入C++拷贝构造函数的总结详解

    本篇文章是对C++中拷贝构造函数进行了总结与介绍。需要的朋友参考下...

    C++教程网5182020-11-30
  • C/C++c/c++内存分配大小实例讲解

    c/c++内存分配大小实例讲解

    在本篇文章里小编给大家整理了一篇关于c/c++内存分配大小实例讲解内容,有需要的朋友们可以跟着学习参考下。...

    jihite5172022-02-22
  • C/C++OpenCV实现拼接图像的简单方法

    OpenCV实现拼接图像的简单方法

    这篇文章主要为大家详细介绍了OpenCV实现拼接图像的简单方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    iteye_183805102021-07-29