Given the two linked lists L1 and L2 below,answer the related guestions below
L1={5,9,1,3}
Figure1
L2={6,10,3,8,9,4,7,2}
L2> 6 >10 >3 > 8 >9 >4 >7 > 2
(a) Find L3 which is the intersection of L1 and L2,that is,L3=L1 n L2.The intersection will find
common elements between the two sets.In other words,the elements of the set that appeared in one linked list must also appear in the other linked list.
(b) Show the operation of creating L3 through coding. The declaration is void intersection(Node*&L3, Node*L1,Node*L2)