摘要: 1 #include 2 #include 3 #include 4 5 struct node 6 { 7 int data; 8 struct node *pNext; 9 }; 10 11 //新建node 12 struct node * create_node(int data) 13 { 14 struc... 阅读全文
posted @ 2018-09-08 20:14 wdliming 阅读(242) 评论(0) 推荐(0)
摘要: #include #include #include struct node{ int data; struct node *pNext;};//新建nodestruct node * create_... 阅读全文
posted @ 2018-09-08 20:06 wdliming 阅读(191) 评论(0) 推荐(0)