问题:

给定两个非递减的整数序列A和B,利用链表表示序列A和B,将A和B合并为一个非递增的有序序列C,序列C允许有重复的数据。要求空间复杂度为O(1)。

输入

多组数据,每组数据有三行,第一行为序列A和B的长度n和m,第二行为序列A的n个元素,第三行为序列B的m个元素(元素之间用空格分隔)。n=0且m=0时输入结束。

输出

对于每组数据输出一行,为合并后的序列,每个数据之间用空格分隔。

测试样例:

输入
5 5
1 3 5 7 9
2 4 6 8 10
5 6
1 2 2 3 5
2 4 6 8 10 12
0 0
输出
10 9 8 7 6 5 4 3 2 1
12 10 8 6 5 4 3 2 2 2 1 
#include<stdio.h>
#include<stdlib.h>
#include<limits.h>

/*
这很明确为一个简单的,链表输入,栈输出问题!
*/
typedef struct Llist *List;
typedef struct Llist *Stack;
struct Llist{
	int data;
	struct Llist *next;
};

List readL(int num);
void attach(int num, List* rear);
List crt_pare(List a, List b);
void push_stack(int data, Stack S);
int pop_stack(Stack S);
int compare(int a, int b);
void print_result(List P);
void free_link(List *PtrL);

int main()
{
	int n, m;
	while(scanf("%d%d", &n, &m) == 2 && (n || m)){
		
		List PtrL1, PtrL2;
		Stack PtrL3;
		PtrL1 = readL(n);
		if(!PtrL1 && !PtrL2){
			printf("error 1 not read !");
			break;
		}
		PtrL2 = readL(m);
		PtrL3 = crt_pare(PtrL1, PtrL2);
		free_link(&PtrL1);
		free_link(&PtrL2);
		
		print_result(PtrL3);
	}
	return 0;
}
List readL(int num)
{
	List ptrL, rearL, temp;
	int r_n;
	
	ptrL = (List)malloc(sizeof(struct Llist));
	ptrL ->next = NULL;
	rearL = ptrL;
	for(int i = num; i > 0; i--){
		scanf("%d", &r_n);
		attach(r_n, &rearL);
	}
	temp = ptrL;
	ptrL = ptrL->next;
	free(temp);
	return ptrL;
}
List crt_pare(List a, List b)
{
	List c_1, c_2;
	Stack c_3, c_temp;
	int a_flag = 0, b_flag = 0;
	int c1, c2;
	Stack PtrL;
	c_1 = a; c_2 = b;
	if(c_1 == NULL)
	{
		c_1 = (List)malloc(sizeof(struct Llist));
		c_1 ->data = INT_MAX;
		c1 = 1;
	}
	if(c_2 == NULL)
	{
		c_2 = (List)malloc(sizeof(struct Llist));
		c_2 ->data = INT_MAX;
		c2 = 1;
	}
	c_3 = (Stack)malloc(sizeof(struct Llist));
	c_3 ->next = NULL;
	PtrL = c_3;
	while(1){
		if(c_1 ->next == NULL){
			a_flag = 1;
		}
		if(c_2 ->next == NULL){
			b_flag = 1;
		}			
		switch(compare(c_1 ->data, c_2 ->data)){
			case 1: push_stack(c_2 ->data, PtrL);
					if(b_flag == 0){
						c_2 = c_2 ->next;
					}else{
						c_2 ->data = INT_MAX;
					}	
					break;
					
			case 0: push_stack(c_1 ->data, PtrL);
					if(a_flag == 0){
						c_1 = c_1 ->next;
					}else{
						c_1 ->data = INT_MAX;
					}
					break;
		}
		if(c_1 ->data == INT_MAX && c_2 ->data == INT_MAX){
			break;
		}
	}
	if(c1 == 1){
		free(c_1);
	}
	if(c2 == 1){
		free(c_2);
	}
	return c_3;
}
void attach(int num, List* prear){
	List PtrL;
	PtrL = (List)malloc(sizeof(struct Llist));
	PtrL ->next = NULL;
	PtrL ->data = num;
	(*prear) ->next = PtrL;
	*prear = PtrL;
}
int compare(int a, int b)
{
	if(a >= b)
		return 1;
	else
		return 0;
}
void print_result(Stack P)
{
	int n;
	if (!P)
		printf("^v^!!!, error, <..>");
	while(P ->next){
		n = pop_stack(P);
		printf("%d ",n);
	}
	printf("\n");
}

void push_stack(int data, Stack S)
{
	Stack new_s;
	new_s = (Stack)malloc(sizeof(struct Llist));
	new_s ->data = data;
	new_s ->next = S ->next;
	S ->next = new_s;
}
int pop_stack(Stack S)
{
	Stack p_s;
	int top;
	if(S ->next == NULL){
		printf("已经全部输出了\n");
		return -1;
	}else{
		p_s = S ->next;
		S ->next = p_s ->next;
		top = p_s ->data;
		free(p_s);
		return top;
	}
}
void free_link(List *PtrL)
{
	List temp;
	if(!(*PtrL)){
		return ;
	}
	while(*PtrL){
		temp = *PtrL;
		(*PtrL) = (*PtrL) ->next;
		free(temp);
	}
}

 在devC++运行结果为:

5 5
1 3 5 7 9
2 4 6 8 10
10 9 8 7 6 5 4 3 2 1
5 6
1 2 2 3 5
2 4 6 8 10 12
12 10 8 6 5 4 3 2 2 2 1
0 0
即正确运行,

为什么在vscode上显示

Thread 1 received signal SIGSEGV, Segmentation fault.

print_result (P=0x61fe00) at D:\Code_VsCode\C\C_P\8_1.c:131

131 printf("%d ", P ->data);

也就是段错误,根本找不到啊!,已成功解决!

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐