摘要: 1 #include 2 #include 3 4 typedef struct Node 5 { 6 int val; 7 struct Node * pNext; 8 }Node,* pNode; 9 10 pNode creat_list(); 11 void trevel_list(pNode); 12 void sort_... 阅读全文
posted @ 2017-05-06 23:28 Chaney丶 阅读(723) 评论(0) 推荐(0)