两个链表求交集_实现两个排序链表的并集和交集

两个链表求交集

In computer science, a linked list is a linear collection of data elements, whose order is not given by their physical placement in memory. Instead, each element points to the next. It is a data structure consisting of a collection of nodes which together represent a sequence. In its most basic form, each node contains data and a reference (in other words, a link) to the next node in the sequence. This structure allows for efficient insertion or removal of elements from any position in the sequence during iteration. More complex variants add additional links, allowing more efficient insertion or removal of nodes at arbitrary positions.

在计算机科学中,链表是数据元素的线性集合,其顺序不是由它们在内存中的物理位置给出的。 相反,每个元素都指向下一个。 它是一种数据结构,由节点的集合组成,这些节点一起代表一个序列。 以其最基本的形式,每个节点都包含数据和对序列中下一个节点的引用(换句话说,就是链接)。 这种结构允许在迭代过程中从序列中的任何位置有效插入或删除元素。 更复杂的变体会添加其他链接,从而可以更有效地在任意位置插入或删除节点。

Union of two linked lists can be found by using merging the lists in a sorted manner.

两个链接列表的联盟可以通过合并列表的排序方式找到。

The intersection of the two lists can be found by only taking common elements while merging the two lists.

通过合并两个列表时仅采用公共元素,可以找到两个列表的交集

It has been assumed that the linked lists are sorted.

假定已对链表进行排序

Algorithm:

算法:

Union(L1,L2)

联合(L1,L2)

    1) Declare node pointer output, output Tail as NULL
2) Repeat steps 3 to 9 while L1!=NULL AND L2!=NULL
3) Make a newNode and set its next = NULL
4) If L1->data < L2->data then
Set newNode->data = L1->data
Set L1 = L1->next
5) Else if L1->data > L2->data then
Set newNode->data = L2->data
L2 = L2->next
6) Else
i) Set Data = L1->data
ii) Set newNode->data = Data
iii) Repeat steps a) and b) 
while L1!=NULL AND L2!=NULL AND L1->data == Data AND L2->data == Data
a) Set L1 = L1->next
b) Set L2 = L2->next
7) If output == NULL then
Set Output = outputTail = newNode
8) Else
a) Set outputTail->next = newNode
b) Set outputTail = outputTail->next
9) Repeat steps 10 to 14 while L1!=NULL
10) Make a newNode
11) Set outputTail->next = newNode
12) Set outputTail = outputTail->next
13) Set outputTail->data = L1->data
14) Set L1 = L1->next
Repeat steps 15 to 19 while L2!=NULL
15) Make a newNode
16) Set outputTail->next = newNode
17) Set outputTail = outputTail->next
18) Set outputTail->data = L2->data
19) Set L2 = L2->next
Return output

Intersection(L1,L2)

交叉路口(L1,L2)

    1.	If L1 or L2 is NULL then return NULL
2.	Declare node pointers output, outputTail as null.
3.	Repeat steps 4 to 6 while L1!=NULL AND L2!=NULL
4.	If L1->datadata then
Set L1 = L1->next
5.	Else If L2->datadata then
Set L2 = L2->next
6.	Else
a)	Declare and set data = L1->data
b)	Make a newNode
c)	Set newNode->data = data and newNode->next = NULL
d)	If output == null then
i.	Set output = outputTail = newNode
e)	Else
i.	Set outputTail->next = newNode
ii.	Set outputTail = outputTail->next
f)	Repeat steps i and ii 
while L1!=NULL AND L2!=NULL AND L1->data == data AND L2->data == data
i.	Set L1 = L1->next
ii.	Set L2 = L2->next

Code:

码:

#include <stdio.h>
#include <stdlib.h>
struct node{
struct node*next;
int data;
};
struct node * Union(struct node * L1, struct node * L2){
struct node * output = NULL;
struct node * outTail = NULL;
while(L1&&L2){
struct node * newNode = (struct node *) malloc(sizeof(struct node));
newNode->next = NULL;
if(L1->data<L2->data){
newNode->data = L1->data;
L1 = L1->next;
}
else if(L1->data>L2->data){
newNode->data = L2->data;
L2 = L2->next;
}
else{
int data = L1->data;
newNode->data = data;
while(L1 && L2 && L1->data == data && L2->data == data){
L1 = L1->next;
L2 = L2->next;
}
}
if(!output)
output = outTail = newNode;
else{
outTail->next = newNode;
outTail = outTail->next;
}
}
while(L1){
outTail->next = (struct node *) malloc(sizeof(struct node));
outTail = outTail->next;
outTail->data = L1->data;
L1 = L1->next;
}
while(L2){
outTail->next = (struct node *) malloc(sizeof(struct node));
outTail = outTail->next;
outTail->data = L2->data;
L2 = L2->next;
}
outTail->next = NULL;
return output;
}
struct node * intersection(struct node * L1, struct node* L2){
if(L1 == NULL || L2 == NULL)
return NULL;
struct node * output = NULL;
struct node * outTail = NULL;
while(L1&&L2){
if(L1->data<L2->data){
L1 = L1->next;
}
else if(L2->data<L1->data){
L2 = L2->next;
}
else{
int data = L1->data;
struct node * newNode = (struct node *) malloc(sizeof(struct node));
newNode->data = data;
newNode->next = NULL;
if(output == NULL){
outTail = output = newNode;
}
else{
outTail->next = newNode;
outTail = outTail->next;
}
while(L1 && L2 && L1->data == data && L2->data == data){
L1 = L1->next;
L2 = L2->next;
}
}
}
return output;
}
struct node * createList(int listNum){
struct node * list = NULL;
struct node * list_tail = NULL;
printf("Enter elements of List %d in increasing order\n",listNum);
char ch = 'y';
do{
int data;
printf("Enter element : ");
scanf("%d",&data);
struct node * newNode = (struct node *) malloc(sizeof(struct node));
newNode->data = data;
newNode->next = NULL;
if(list == NULL){
list = list_tail = newNode;
}
else{
list_tail->next = newNode;
list_tail = list_tail->next;
}
printf("Would you like to insert another element [Y/N] : ");
scanf(" %c",&ch);
}while(ch == 'y' || ch == 'Y');
return list;
}
void print(struct node * list){
if(list == NULL){
printf("Empty List\n");
return;
}
while(list!=NULL){
printf("%d ",list->data);
list = list->next;
}
printf("\n");
}
int main() {
struct node * L1 = NULL;
struct node * L2 = NULL;
struct node * L3 = NULL;
struct node * L4 = NULL;
L1 = createList(1);
L2 = createList(2);
printf("List 1 : ");
print(L1);
printf("List 2 : ");
print(L2);
printf("Union : ");
L3 = Union(L1, L2);
print(L3);
printf("Intersection : ");
L4 = intersection(L1, L2);
print(L4);
return 0;
}

Output

输出量

Enter elements of List 1 in increasing order 
Enter element : 1
Would you like to insert another element [Y/N] : Y 
Enter element : 4
Would you like to insert another element [Y/N] : Y 
Enter element : 9
Would you like to insert another element [Y/N] : Y 
Enter element : 27 
Would you like to insert another element [Y/N] : N 
Enter elements of List 2 in increasing order 
Enter element : 4
Would you like to insert another element [Y/N] : Y 
Enter element : 9
Would you like to insert another element [Y/N] : Y 
Enter element : 18 
Would you like to insert another element [Y/N] : Y 
Enter element : 22 
Would you like to insert another element [Y/N] : Y 
Enter element : 30 
Would you like to insert another element [Y/N] : N 
List 1 : 1 4 9 27
List 2 : 4 9 18 22 30
Union : 1 4 9 18 22 27 30
Intersection : 4 9 

翻译自: https://www.includehelp.com/data-structure-tutorial/implement-union-and-intersection-of-two-sorted-linked-lists.aspx

两个链表求交集

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/542841.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python在哪个城市工资高_专硕好还是学硕好?哪个更好就业工资高?

最近有备考的小伙伴咨询关于学硕和专硕的问题&#xff0c;一篇旧文分享下。昨天的文章专硕学费贵那么多会比学硕学的东西多吗&#xff1f;九大美院研究生学费对比(点击查看)受到了不少小伙伴的关注&#xff0c;大家就专硕和学硕的问题提出了不少疑义。有人认为专硕好&#xff0…

html input不能输入小数_【Python基础(八)】输入和输出

本节将会介绍python中的输入和输出操作&#xff0c;基础部分主要就是介绍input()和print()的用法&#xff0c;print()我们在之前的学习中已经多次使用了&#xff0c;并不陌生&#xff0c;这一节再详细的梳理一下print()中可以支持的各种方法。另外一大内容是文件的读写和OS命令…

comparator比较器用法_汽车三元催化器堵塞咋办?不拆不换,用这招清理干净、动力猛如虎...

如今汽车的价格是不断走低&#xff0c;很多人也能如愿成为有车人群。如今国庆假期即将到来&#xff0c;在国庆前买了车的朋友就能在长假里开着汽车出去好好游玩一番&#xff0c;这过程是想想都觉得美妙。不过作为车主&#xff0c;汽车不单要懂得开&#xff0c;也要学会保养&…

mongodb添加创建修改时间_MongoDB数据库插入、更新和删除操作详解

一、Insert操作Insert操作是MongoDB插入数据的基本方法&#xff0c;对目标集合使用Insert操作&#xff0c;会将该文档添加到MongoDB并自动生成相应的ID键。文档结构采用类似JSON的BSON格式。常见的插入操作主要有单条插入和批量插入两种形式。插入时只是简单地将文档存入数据库…

51单片机怎么显示当前时间_51单片机玩转物联网基础篇06-LCD1602液晶显示器

前言本节我们开始学习LCD1602&#xff0c;LCD1602是字符型液晶显示屏&#xff0c;在实际项目中应用非常广泛&#xff0c;学完本节就可以逐步开发一些好玩的应用了。一、基础知识1.LCD1602简介LCD1602是字符型液晶显示模块&#xff0c;专门用于显示字母、数字、符号等点阵式LCD&…

在JavaScript中以Hours24:Minutes:Seconds格式获取当前时间

使用JavaScript获取当前时间 (Getting current time in JavaScript) To get the current time in JavaScript, we need to use three library functions of Date class, 要获取JavaScript中的当前时间 &#xff0c;我们需要使用Date类的三个库函数&#xff0c; Date getHours(…

联想服务器如何u盘启动盘装系统,联想如何设置u盘启动

相信有不少网友都在使用联想电脑&#xff0c;它的性价比一直受到不少消费者的青睐。接下来教大家联想如何设置u盘启动&#xff0c;希望大家能喜欢。联想如何设置u盘启动步骤阅读1、按快捷键弹出启动选项&#xff0c;联想笔记本一般是F12或者F22、按TAB键切换App Menu菜单&#…

c语言负数左移右移_C语言 位运算符的运算规则

位运算是指按照二进制进行的运算&#xff0c;在C语言中&#xff0c;提供了6种的位运算符&#xff0c;他们分别是按位与&#xff08;&&#xff09;&#xff0c;按位或&#xff08;|&#xff09;&#xff0c;按位异或&#xff08;^&#xff09;&#xff0c;按位取反&#xff…

Android 带着用户名的SharedPreferences

/*** 设置当前用户的签到信息* account&info;account&info** param context* param sign* author jrjin* time 2016-1-5 下午2:27:47*/public static void setSignInfo(Context context, String sign) {String account getAccount(context);if (TextUtils.isEmpty(acc…

python数据分析与可视化-Python数据分析与数据可视化

数据分析、数据挖掘与数据可视化是一个古老的话题&#xff0c;并非什么新生事物。近些年来&#xff0c;借助于计算机软硬件的飞速发展&#xff0c;数据分析、挖掘、可视化相关理论和技术在各领域的应用更是有了质的飞跃。饭店选址、公交路线与站牌规划、物流规划、春运加班车次…

c语言 函数的参数传递示例_C-用户定义的函数示例,没有参数,没有返回类型...

c语言 函数的参数传递示例Define a function with no argument and no return type in C language. 用C语言定义一个没有参数且没有返回类型的函数。 In the program, we have function named fun1 which has no argument and no return type (void is the return type - that…

的标题形状工具在哪里_自媒体如何搜集素材?标题、文章、图片素材收集3大途径!...

文&#xff1a;老彭自媒体大家好&#xff0c;我是老彭&#xff0c;很多人觉得做自媒体写内容很难&#xff0c;每天想写点东西又感觉无从下手&#xff0c;那么到底是什么原因造成的呢&#xff1f;其实最主要的原因还是自己平时看的太少&#xff0c;和素材储备不足所导致的。大家…

Python中的条件语句(if,if ... else,if ... elif ... else和嵌套的if)

Conditional statements decide the flow of program execution. In programming whenever we need to make execute any special blocks based on the decision then we use the conditional statements. 条件语句决定程序执行的流程。 在编程中&#xff0c;只要我们需要根据决…

控制台应用和空项目有什么区别_在公司做的项目和自己在学校做的有什么区别?...

前言 只有光头才能变强。 文本已收录至我的GitHub仓库,欢迎Star:https://github.com/ZhongFuCheng3y/3y 不知道大家还是学生的时候有没有这个问题:公司做的项目和自己在学校练手的项目有多大的区别。我以前在学校跟着视频做一些项目练手,总感觉公司做的东西会要难很多,不知…

小样本点云深度学习库_合成鲁棒的对抗样本来欺骗深度学习分类器

本期一诺sec关注深度学习系统安全问题&#xff0c;推荐一篇来自ICML 2018会议论文Synthesizing Robust Adversarial Examples。论文链接http://proceedings.mlr.press/v80/athalye18b.html。深度模型对于对抗样本具有高度的脆弱性&#xff0c;这已经是得到大家印证的事实。自从…

stl字符串去除空格_在列表中推送字符并在C ++ STL中将它们打印为空格

stl字符串去除空格In this example, we are declaring a character list and pushing the characters from A to Z using a for loop and push_back() function then printing the value of the vector separated by space. 在此示例中&#xff0c;我们声明了一个字符列表&…

java数据类型_JAVA基础篇(数据类型)

首先请大家想想这几个问题&#xff1a;1.java数据类型是什么&#xff1f;2.Java数据类型有什么用&#xff1f;上一节&#xff08;JAVA基础篇&#xff08;函数&#xff09;&#xff09;有个add函数&#xff0c;里面有两个int类型&#xff0c;int类型就是整数的意思&#xff0c;这…

SharePoint CAML In Action——Part I

阅读目录 CAML In Action接下来在SharePoint中&#xff0c;我们经常要对List进行操作&#xff0c;比如要从List中取出相应的ListItem&#xff0c;利用CAML是个好办法。在没了解CAML之前&#xff0c;我是这样取数据的&#xff1a; MyList.Items.Cast<SPListItem>().ToList…

地图统计_博客 城市访问量统计并且通过Echarts+百度地图展示

本篇讲解一下 如何在Vue 中使用 Echarts 百度地图 统计 博客访问量 并且通过QQWry 解析 ip 地址 利用Echarts 展示出来效果图如下&#xff1a;1.纯真Ip地址库 QQWry这是我在github上找的 java版本的 解析 qqwry的1.1 maven 引入 qqwry<dependency> <grou…

修改console缓存大小_更改缓存的行大小将如何影响其他参数?

修改console缓存大小Prerequisites: Memory mapping and its types 先决条件&#xff1a; 内存映射及其类型 While designing a cache system of a PC, the size of cache lines is an important parameter. 在设计PC的缓存系统时&#xff0c;缓存行的大小是重要的参数。 In …