2018年1月4日
摘要: 1 #include 2 #include 3 typedef struct s 4 { 5 int data; 6 struct s*n; 7 }d; 8 d*create(int n) 9 { 10 int i, a; 11 d*p1 = NULL; 12 d*p2 = NULL; 13 d*head = NULL; 14 ... 阅读全文
posted @ 2018-01-04 09:05 不朽、醉 阅读(112) 评论(0) 推荐(0)