摘要: 1 #ifndef LIST_H 2 #define LIST_H 3 4 typedef unsigned int Item; 5 typedef unsigned char byte; 6 struct node 7 { 8 Item item; // 卫星数据 9 struct node * next; 10 }; 11 typedef struct node * List; 12 13 void ListAddItem(List *plist, const Item item);14 struct node * ListS... 阅读全文
posted @ 2013-07-05 13:47 尘虑萦心 阅读(199) 评论(0) 推荐(0) 编辑