首页 > 代码库 > 数据结构实验(保存起来过两天写实验报告) 链表的合并
数据结构实验(保存起来过两天写实验报告) 链表的合并
huangjing
链表的合并,要求O(la*lb)的复杂度,实际上就是插入什么的,注意如果在链表开头和结尾的特殊情况
代码
#include<cstdio> #include<cstring> #include<cstdlib> typedef struct node { int data; struct node *next; }Node,*listnode; int lena,lenb; void creatlist(listnode &head,int flag) { int x=1; listnode p,xx; head->next=NULL; xx=head; while(x!=0) { p=(listnode)malloc(sizeof(struct node)); scanf("%d",&x); if(x==0) break; if(flag) lena++; else lenb++; p->data=http://www.mamicode.com/x;>数据结构实验(保存起来过两天写实验报告) 链表的合并
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。