标签:style blog http color 使用 文件
1、 定义头文件
main.c,实现存储
队列,创建头文件queue.h
创建queue.c
实现main函数
单链表
在定义头文件的时候,最好使用:
#ifndef 变量A
#define变量A
函数声明和结构声明等声明
#endif
通过上面的这种方式可以避免重复调用头文件时候产生的负面影响。
定义头文件link.h:(注意加上extern)
定义link.c
编写main.c
4、双向链表
创建link.h头文件
编写link.c文件
实现main.c方法
标签:style blog http color 使用 文件
原文地址:http://blog.csdn.net/tototuzuoquan/article/details/37745239