
链表
文章平均质量分 79
ToRe.
这个作者很懒,什么都没留下…
展开
-
C语言课程设计——图书管理系统
代码又臭又长,如有BUG,欢迎指出,不一定改ಥ_ಥ#include <stdio.h>#include <stdlib.h>#include<stdbool.h>#include<string.h>#include<conio.h>/**********************下为基础数据管理*****************...原创 2018-06-09 15:34:10 · 7824 阅读 · 10 评论 -
C 单向链表的实现及部分功能
马上要做程序设计期末作业 (⋟﹏⋞),恰好在实验手册上看到单向链表,顺便学习下,如有错误欢迎指正。 节点结构体定义struct node{ char name[20]; int age; double salary; struct node *next;}; 链表的建立及增加struct node *creat(struct node...原创 2018-01-08 10:30:17 · 246 阅读 · 0 评论