摘要: 1 #include 2 #include 3 #include 4 5 typedef struct node{ 6 struct node *previous; 7 int age; 8 struct node *next; 9 }Node; ... 阅读全文
posted @ 2015-12-16 18:31 芥末勾勒 阅读(189) 评论(0) 推荐(0) 编辑