摘要: 1 #include 2 #include 3 struct node 4 { 5 int data; 6 struct node *next; 7 }; 8 int main() 9 { 10 int n,i; 11 scanf("%d",&n); 12 int count=n; 13 struct node*head,*p... 阅读全文
posted @ 2019-03-04 21:30 念文丶 阅读(312) 评论(0) 推荐(0)