摘要: 1 #include 2 #include 3 4 typedef struct node 5 { 6 int num; 7 struct node* next; 8 }node; 9 10 node *head = NULL; 11 ... 阅读全文
posted @ 2015-10-31 17:20 弥猫 阅读(117) 评论(0) 推荐(0) 编辑