摘要: #include <stdlib.h>/*标准库函数*/#include <stdio.h>/*I/O函数*/#include <string.h>/*字符串函数*/#include <ctype.h>/*字符操作函数*/#include "linkedlist.h"#include "hashtable.h"#include "queue.h"typedef struct student{ int id; char name[15];} student; //节点定义//链表的遍历vo 阅读全文
posted @ 2011-10-09 11:10 火腿骑士 阅读(247) 评论(0) 推荐(0) 编辑