这篇文章将为大家详细讲解有关C++怎么实现接两个链表,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
成都创新互联公司是一家专业提供札达企业网站建设,专注与成都网站设计、网站建设、H5响应式网站、小程序制作等业务。10年已为札达众多企业、政府机构等服务。创新互联专业网站制作公司优惠进行中。
C++实现接两个链表实例代码
有以ha为头结点的链表,元素个数为m;以hb为头结点的链表,元素个数为n。现在需要你把这两个链表连接起来,并使时间复杂度最小,请分析并实现。
思路:
很简单的链表操作的题目,逆序头部插入,并将长度较长的一方接到较短的后面,时间复杂度为O(min(m,n)),注意free使用的地点!。
实例代码:
#include#include #include using namespace std; typedef int ElemType; typedef struct Node { ElemType data; struct Node *next; }Lnode,*LinkList; //打印 void print(LinkList &head) { LinkList plist=head->next; while(plist!=NULL) { cout< data<<" "; plist=plist->next; } cout< next=NULL; cout<<"逆序输入元素,空格分隔:"< 0;--i) { p=(LinkList)malloc(sizeof(Node)); cin>>p->data; p->next=L->next; L->next=p; } print(L); } //连接链表 void Combine(LinkList &ha,int m,LinkList &hb,int n,LinkList &hc) { LinkList selectMin; hc=(LinkList)malloc(sizeof(Node)); int flag=0; if(m>n) { selectMin=hb; flag=1; //ha在后面 } else selectMin=ha; while(selectMin->next!=NULL) selectMin=selectMin->next; if(flag) { selectMin->next=ha->next; hc=hb; free(ha);//notice } else { selectMin->next=hb->next; hc=ha; free(hb); } cout<<"合并后的链表为:"< next; free(temp); } } int main() { int m,n; cout<<"请输入以ha为head节点链表的元素个数:"< >m; LinkList ha,hb,hc; CreateList(ha,m); cout<<"请输入以hb为head节点链表的元素个数:"< >n; CreateList(hb,n); Combine(ha,m,hb,n,hc); Destory(hc); return 0; }
关于“C++怎么实现接两个链表”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。