摘要: 1 #include <iostream> 2 #include <cstdlib> 3 4 using namespace std; 5 6 struct node{ 7 int data; 8 node *next; 9 }; 10 11 struct node *head=NULL; 12 1 阅读全文
posted @ 2019-07-29 17:19 WANHAPPY 阅读(242) 评论(0) 推荐(0)