摘要: #include using namespace std; struct node{ int value; struct node *next; }; struct node *head; void insert(struct node * &head,int value) { if(head == NULL) { head = new s... 阅读全文
posted @ 2017-11-04 10:53 青儿哥哥 阅读(347) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; struct node{ int value; struct node *next; }; struct node *head1; struct node *head2; void insert(struct node * &head,int value) { if(head == NULL) {... 阅读全文
posted @ 2017-11-04 10:42 青儿哥哥 阅读(494) 评论(0) 推荐(0) 编辑