Answer to Question #266045 in C++ for zxc

Question #266045

Write a non-member function that that takes 2 linked lists as

constant arguments and returns a new linked list that contains

every number the two lists do NOT have in common. If list1

contains the numbers 3, 2, 4, 9, 8, 1, 0, 5 and list2 contains the

numbers 0, 1, 7, 6, 4, 5, 9, then the function should return a list of

the numbers 2, 3, 6, 7, 8 in any order. The time complexity of

function should be O(N).


1
Expert's answer
2021-11-15T00:23:23-0500
// C++ program to find union
// 
// linked lists
#include <iostream>
using namespace std;


/* Link list node */
struct Node {
	int data;
	struct Node* next;
};


/* A utility function to insert a
node at the beginning ofa linked list*/
void push(struct Node** head_ref, int new_data);


/* A utility function to check if
given data is present in a list */
bool isPresent(struct Node* head, int data);


/* Function to get union of two
linked lists head1 and head2 */
struct Node* getUnion(
	struct Node* head1,
	struct Node* head2)
{
	struct Node* result = NULL;
	struct Node *t1 = head1, *t2 = head2;


	// Insert all elements of
	// list1 to the result list
	while (t1 != NULL) {
		push(&result, t1->data);
		t1 = t1->next;
	}


	// Insert those elements of list2
	// which are not present in result list
	while (t2 != NULL) {
		if (!isPresent(result, t2->data))
			push(&result, t2->data);
		t2 = t2->next;
	}
	return result;
}


/* Function to get intersection of
two linked lists head1 and head2 */
struct Node* getIntersection(struct Node* head1,
							struct Node* head2)
{
	struct Node* result = NULL;
	struct Node* t1 = head1;


	// Traverse list1 and search each element of it in
	// list2. If the element is present in list 2, then
	// insert the element to result
	while (t1 != NULL) {
		if (isPresent(head2, t1->data))
			push(&result, t1->data);
		t1 = t1->next;
	}
	return result;
}


/* A utility function to insert a
node at the beginning of a linked list*/
void push(struct Node** head_ref, int new_data)
{


	/* allocate node */
	struct Node* new_node
		= (struct Node*)malloc(
			sizeof(struct Node));


	/* put in the data */
	new_node->data = new_data;


	/* link the old list off the new node */
	new_node->next = (*head_ref);


	/* move the head to point to the new node */
	(*head_ref) = new_node;
}


/* A utility function to print a linked list*/
void printList(struct Node* node)
{
	while (node != NULL) {
		cout << " " << node->data;
		node = node->next;
	}
}


/* A utility function that returns true if data is
present in linked list else return false */
bool isPresent(struct Node* head, int data)
{
	struct Node* t = head;
	while (t != NULL) {
		if (t->data == data)
			return 1;
		t = t->next;
	}
	return 0;
}


/* Driver program to test above function*/
int main()
{


	/* Start with the empty list */
	struct Node* head1 = NULL;
	struct Node* head2 = NULL;
	struct Node* intersecn = NULL;
	struct Node* unin = NULL;


	/*create a linked lits 10->15->5->20 */
	push(&head1, 40);
	push(&head1, 4);
	push(&head1, 115);
	push(&head1, 10);


	/*create a linked lits 8->4->2->10 */
	push(&head2, 100);
	push(&head2, 72);
	push(&head2, 4);
	push(&head2, 98);
	unin = getUnion(head1, head2);
	cout << "\n First list is " << endl;
	printList(head1);
	cout << "\n Second list is " << endl;
	printList(head2);
	cout << "\n Union list is " << endl;
	printList(unin);
	return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS