Independence Day Sale! Unlock 40% OFF on All Job-Oriented Training Programs – Limited Time Only! Offer Ending in
05 D
21 H
14 M
15 S
Get Now
Problem Submissions Solution

Merge Two Sorted Lists

Difficulty: Medium

Acceptance: %

Points: 30.00

Given two sorted linked lists consisting of nodes respectively. The task is to merge both lists and return the head of the merged list.


Topics

Companies

Articles

Examples:

Input: LinkedList1: 10->20->30, LinkedList2: 5->15->25->35

Output: 5->10->15->20->25->30->35

Explanation: Nodes from both linked lists are merged step-by-step into a new sorted linked list.

Input: LinkedList1: 5->6->7, LinkedList2: 5->6->7

Output: 5->5->6->6->7->7

Explanation: Duplicate elements are allowed and are added in the order of their occurrence.

Expected Time Complexity: O(n+m)

Expected Auxilliary Space: O(1)

Constraints:
  • 1 <= no. of nodes<= 10^5
  • 0 <= node->data <= 10^5
Companies:
Amazon Microsoft Samsung Oracle Flipkart + 1 more
Topics:
Linked List
Locked Content
Access Restricted: Please Login to access the code editor and test cases.