BJFU 225基于链表的两个递增有序序列的合并

#include <bits/stdc++.h>
using namespace std;

//结点
typedef struct Lnode {
	int data;
	struct Lnode *next;
}Lnode, *Linklist;

//尾插
void Creatlist(Linklist &L, int &e) {
	Lnode *p = new Lnode;
	p->data = e;
	p->next = NULL;  //处理新加入节点

	Lnode *cur = L;
	while (cur->next != NULL) {
		cur = cur->next;
	}
	cur->next = p;
	p->next = NULL;

}

//初始化
void Initlist(Linklist &L) {
	L = new Lnode;
	L->next = NULL;
}

//合并
void Merge(Linklist &L1, Linklist &L2, Linklist &L) {
	Lnode *c1 = L1->next;
	Lnode *c2 = L2->next;
	Lnode *p = L; //结果 

	while (c1&&c2) {
		if (c1->data == c2->data) {
			p->next = c1;
			p = p->next;
			c1 = c1->next;
			c2 = c2->next;
		}
		else if (c1->data > c2->data) {
			p->next = c2;
			p = p->next;
			c2 = c2->next;
		}
		else {
			p->next = c1;
			c1 = c1->next;
			p = p->next;
		}
	}
	while (c1) {
		p->next = c1;
		c1 = c1->next;
		p = p->next;
	}
	while (c2) {
		p->next = c2;
		c2 = c2->next;
		p = p->next;
	}
}


//打印
void Print(Linklist &L) {
	Lnode *cur = L->next;
	while (cur->next != NULL) {  //cur->next:判断是否是最后一个
      
		cout << cur->data << " ";
		cur = cur->next;
	}
	cout << cur->data << endl;  //最后一个元素输出后 无空格!
}

int main() {

	int n, m;
	while (scanf("%d %d",&n,&m)!=EOF) {

		if (n == 0 && m == 0) break;
		Linklist L1;	nklist L;  //结果 
		Initlist(L1);   Initlist(L2); Initlist(L);
Linklist L2;  Li
		for (int i = 0; i < n; i++) { //建L1
			int e;
			cin >> e;
			Creatlist(L1, e);
		}
		for (int i = 0; i < m; i++) { //建L2
			int e;
			cin >> e;
			Creatlist(L2, e);
		}
		Merge(L1, L2, L);//合并
		Print(L);
		
	}

}








  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值