【数据结构】线性表之顺序表(函数功能实现:两个线性表实现并集操作)

问题描述:实现L1 L2两个线性表的并集。

在这里插入图片描述

算法思路:

1 依次取表L2中的bi(i=0,1,2,3…n-1)
2 若bi不属于L1
3 则将元素插入表L1中。

代码实现:

实现一个功能函数需要三个文件(三个文件在同一目录)。
sqlist.h(定义顺序表)
sqlist.c(实现接口函数)
test.c(主函数实现)

sqlist.h

主要加入此行代码:定义并集函数
int list_merge(sqlink L1, sqlink L2);

typedef int data_t;
#define N 128
typedef struct {
	data_t data[N];
	int last;
}sqlist, *sqlink;

sqlink list_create();
int list_clear(sqlink L);
int list_empty(sqlink L);
int list_length(sqlink L);
int list_locate(sqlink L, data_t value);
int list_insert(sqlink L, data_t value, int pos);
int list_delete(sqlink L);
int list_show(sqlink L);
int list_delete_pos(sqlink L, int pos);
int list_merge(sqlink L1, sqlink L2);
int list_purge(sqlink L);

sqlist.c

主要加入:并集函数具体实现
int list_merge(sqlink L1, sqlink L2){
int i = 0;
int ret;
while (i <= L2->last){
ret = list_locate(L1, L2->data[i]);
if (ret == -1 ){
if (list_insert(L1, L2->data[i], L1->last+1) == -1)
return -1;
}
i++;
}
return 0;
}
sqlist.c 完整代码如下:

#include "sqlist.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

sqlink list_create(){

	//malloc
	sqlink L;

	L =(sqlink)malloc(sizeof(sqlist));
	if (L == NULL) {
		printf("list malloc failed\n");
		return L;
	}

	//initialize
	memset(L, 0, sizeof(sqlist));
	L->last = -1;
	
	//return
	return L;
}

/*
 * @ret 0-success  -1-failed
 **/

int list_clear(sqlink L){

	if (L == NULL)
		return -1;

	memset(L, 0, sizeof(sqlist));
	L->last = -1;
	return 0;
}

int list_delete(sqlink L){
	if (L == NULL)
		return -1;
	free(L);
	L = NULL;
	return 0;

}

/*
 * list_empty:IS list empty?
 *para L:list
 *@ret 1--empty  0--not empty
*/
int list_empty(sqlink L){
	if (L->last == -1)
		return 1;
	else
		return 0;
}

int list_length(sqlink L){
	if (L == NULL)
		return -1;
	return (L->last+1);
}

/*
 * @ret -1--not exist  pos
 *
 */
int list_locate(sqlink L, data_t value){
	int i;
	for (i = 0; i <= L->last; i++){
		if (L->data[i] == value)
			return i;
	}

	return -1;
}
int list_insert(sqlink L, data_t value, int pos){
	int i;
	//full?
	if (L->last==N-1){
		printf("list is full\n");
		return -1;
	}

	//check para   0<=pos<=Last+1    [0, last+1]
	if (pos < 0 || pos > L->last+1) {
		printf("Pos is invalid\n");
		return -1;
	}

	//move
	for (i = L->last; i >= pos; i--){
		L->data[i+1] = L->data[i];
	}

	//update value last
	L->data[pos] = value;
	L->last++;

	return 0;
}


int list_show(sqlink L) {
	int i;

	if (L == NULL)
		return -1;
	if (L->last == -1)
		printf("list is empty\n");

	for (i = 0; i <= L->last; i++){
		printf("%d ", L->data[i]);
	}
	puts("");
	
	return 0;
}
int list_delete_pos(sqlink L, int pos)
{
	int i;
	if (L->last == -1){
		printf("list is empty\n");
		return -1;
	}
	//pos [0, last]
	if (pos < 0 || pos > L->last){
		printf("delete pos is invalid\n");
		return -1;
	}	
	// move [pos+1, last]
	for (i = pos+1; i <= L->last; i++){
		L->data[i-1] = L->data[i];
	}
	
	// update
	L->last--;
	return 0;
}
int list_merge(sqlink L1, sqlink L2){
	int i = 0;
	int ret;
	while (i <= L2->last){
		ret = list_locate(L1, L2->data[i]);
		if (ret == -1 ){
			if (list_insert(L1, L2->data[i], L1->last+1) == -1)
				return -1;
		}
		i++;		
	}
	return 0;
}
int list_purge(sqlink L){

	return 0;
}

test.c

主要在主函数内加入代码:test_merge();
记得声明函数和主函数的具体实现:void test_merge();
test.c完整代码如下:

#include <stdio.h>
#include "sqlist.h"

void test_insert();
void test_delete_pos();
void test_merge();

int main(int argc, const char *argv[])
{
//	test_insert();
//	test_delete_pos();
	test_merge();

	return 0;
}
void test_insert(){
	sqlink L;

	L = list_create();
	if (L == NULL)
		return;

	list_insert(L, 10, 0);
	list_insert(L, 20, 0);
	list_insert(L, 30, 0);
	list_insert(L, 40, 0);
	list_show(L);
	//list_insert(L, 70, list_length(L));
	list_insert(L, 100, -1000);
	list_show(L);

	list_delete(L);
}

void test_delete_pos(){
	sqlink L;

	L = list_create();
	if (L == NULL)
		return;

	list_insert(L, 50, 0);
	list_insert(L, 20, 0);
	list_insert(L, 50, 0);
	list_insert(L, 40, 0);
	list_show(L);
	
	list_delete_pos(L, 2);
	list_show(L);
}

void test_merge(){
	sqlink L1, L2;

	L1 = list_create();
	if (L1 == NULL)
		return;

	L2 = list_create();
	if (L2 == NULL)
		return;

    list_insert(L1, 10, 0);
	list_insert(L1, 20, 0);
	list_insert(L1, 30, 0);
	list_insert(L1, 40, 0);
	
	
	list_insert(L2, 20, 0);
	list_insert(L2, 50, 0);
	list_insert(L2, 40, 0);
	list_insert(L2, 90, 0);
	list_show(L1);
	list_show(L2);
	printf("************\n");

	list_merge(L1, L2);
	list_show(L1);
}

编译运行:

gcc *.c

./a.out

运行结果:

在这里插入图片描述
由结果可以看出,L2的90和50并到L1,L1和L2实现了并集操作。

  • 9
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值