摘要: 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 struct node*head,*p,*end,*q; 12 head=(struct node*)malloc(s... 阅读全文
posted @ 2019-02-25 16:34 念文丶 阅读(393) 评论(0) 推荐(0)
摘要: 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 struct node*head,*p; 12 head=(struct node*)malloc(sizeof(st... 阅读全文
posted @ 2019-02-25 12:50 念文丶 阅读(308) 评论(0) 推荐(0)
摘要: 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 struct node*head,*end,*p; 12 head=(struct node*)malloc(size... 阅读全文
posted @ 2019-02-25 12:47 念文丶 阅读(290) 评论(0) 推荐(0)