Merge Two Sorted Lists

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 141:- Merge Two Sorted Lists

To merge two sorted singly linked lists into a single sorted linked list, you can use a simple iterative approach. Here's how you can do it:

  1. Create a new dummy node to serve as the head of the merged list.
  2. Initialize two pointers, current and temp, pointing to the dummy node.
  3. Compare the values of the nodes from the two input lists. Attach the smaller node to the temp pointer, and move the corresponding list's pointer forward.
  4. Repeat the comparison and attaching process until you reach the end of one of the lists.
  5. Attach the remaining nodes from the non-empty list to the temp pointer.
  6. The merged list is now connected through the dummy.next pointer.

Here's a C++ implementation of this approach:

 

cppCopy code

#include <iostream> class Node { public: int data; Node* next; Node(int value) : data(value), next(nullptr) {} }; Node* mergeSortedLists(Node* list1, Node* list2) { Node dummy(0); // Dummy node to serve as the head of the merged list Node* temp = &dummy; // Pointer to the current position in the merged list while (list1 && list2) { if (list1->data < list2->data) { temp->next = list1; list1 = list1->next; } else { temp->next = list2; list2 = list2->next; } temp = temp->next; } // Attach remaining nodes from the non-empty list if (list1) { temp->next = list1; } if (list2) { temp->next = list2; } return dummy.next; // Merged list starts from dummy.next } void displayList(Node* head) { while (head) { std::cout << head->data << " "; head = head->next; } std::cout << std::endl; } int main() { Node* list1 = new Node(1); list1->next = new Node(3); list1->next->next = new Node(5); Node* list2 = new Node(2); list2->next = new Node(4); list2->next->next = new Node(6); std::cout << "List 1: "; displayList(list1); std::cout << "List 2: "; displayList(list2); Node* mergedList = mergeSortedLists(list1, list2); std::cout << "Merged List: "; displayList(mergedList); return 0; }

In this example, two sorted linked lists (list1 and list2) are merged using the mergeSortedLists function. The merged list is displayed using the displayList function.

The time complexity of this approach is O(N + M), where N and M are the lengths of the input lists, as each node is visited exactly once.

19. Linked Lists Assignments

Comments: 2

profile
@mk.info.work
17-Feb-2024, 10:20 PM

SCIAKU Team please upload 1st video of TREE please please please, please

profile
@na3744
23-Feb-2024, 02:52 AM

I bought this course, it worth it!

profile
@mk.info.work
15-Nov-2023, 10:25 PM

Hi i want to buy this course but you dont have master card payment method please let me know how i can buy it

profile
@sciaku1
11-Jan-2024, 03:23 PM

Dear mk.info.work, Now we have all types of payment options. If you need to purchase just checkout our official website

Frequently Asked Questions (FAQs)

How do I register on Sciaku.com?
How can I enroll in a course on Sciaku.com?
Are there free courses available on Sciaku.com?
How do I purchase a paid course on Sciaku.com?
What payment methods are accepted on Sciaku.com?
How will I access the course content after purchasing a course?
How long do I have access to a purchased course on Sciaku.com?
How do I contact the admin for assistance or support?
Can I get a refund for a course I've purchased?
How does the admin grant access to a course after payment?