我是靠谱客的博主 悦耳毛衣,最近开发中收集的这篇文章主要介绍MergeList,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

对应写的是严蔚敏P21算法2.2,是把2个非递减的线性表(顺序表和链表)进行合并,和归并排序不同。

#include<iostream>
#include<malloc.h>
using namespace std;
typedef  struct Node{
    int value;
    struct Node *next;
} Node;


Node* CreateLinklist(int len){
    Node* ahead=(Node*)malloc(sizeof(Node));
    ahead->next=NULL;
    Node* l=ahead;
    for(int i=0;i<len;i++){
        Node* p=(Node*)malloc(sizeof(Node));
        cin>>p->value;
        p->next=NULL;
        l->next=p;
        l=l->next;
    }
    return ahead;
}
//采用链表
Node* MergeLinkList(Node* ahead,Node* bhead){
    Node* head=(Node*)malloc(sizeof(Node));
    Node* r=head;
    head->next=NULL;
    Node* p=NULL;
    Node* q=NULL;
    if(ahead->next!=NULL)
        p=ahead->next;
    else{
        return bhead;
    }


    if(bhead->next!=NULL)
       q=bhead->next;
    else
        return ahead;


    while(p!=NULL && q!=NULL){
        if(p->value<q->value){
            r->next=p;
            r=r->next;
            p=p->next;
        }
        else{
            r->next=q;
            r=r->next;
            q=q->next;
        }
    }


    while(p!=NULL){
        r->next=p;
        r=r->next;
        p=p->next;
    }


    while(q!=NULL){
        r->next=q;
        r=r->next;
        q=q->next;
    }


    return head;
}
//采用数组
int* MergeList(int a[],int alen,int b[],int blen){
    int* t=(int*)malloc(sizeof(int)*(alen+blen));
    int* flag=t;
    int* r=t;
    int i=0,j=0;
    while( i<alen&& j<blen){
        if(a[i]<b[j]){
            *r=a[i];
            r++;
            i++;
        }
        else{
            *r=b[j];
            r++;
            j++;


        }
    }
    while(i<alen){
       *r=a[i];
        r++;
        i++;
    }
    while(j<blen){
        *r=b[j];
        r++;
        j++;


    }




    return flag;
}


int main(){
    //顺序表
    int a[]={1,3,5,7,9};
    int b[]={2,4,6,8};
    int alen=sizeof(a)/sizeof(a[0]);
    int blen=sizeof(b)/sizeof(b[0]);
    int *t=MergeList(a,alen,b,blen);
    int m=0;
    while(m<alen+blen){
        cout<<*t<<endl;
        t++;
        m++;
    }
    //链表
    //创建链表A
    cout<<"LinkList A:";
    Node* ahead=CreateLinklist(5);
    //创建链表B
    cout<<"LinkList B:";
    Node* bhead=CreateLinklist(4);
    //得到归并后的链表并遍历
    Node* head=MergeLinkList(ahead,bhead);
    Node* p=head;
    if(p->next!=NULL)
        p=p->next;
    else
        return 0;
    while(p!=NULL){
        cout<<p->value<<endl;
        p=p->next;
    }
    return 0;
}


最后

以上就是悦耳毛衣为你收集整理的MergeList的全部内容,希望文章能够帮你解决MergeList所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部