Problem Description
You are given two non-empty linked lists representing two non-negative integers. The most significant digit comes first and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list. You may assume the two numbers do not contain any leading zero, except the number 0 itself.
Key Insights
- The linked lists represent numbers in reverse order, with the most significant digit at the head.
- We can use a stack to reverse the order of the digits while maintaining the addition logic.
- The addition can be performed digit by digit, taking care of the carry for values exceeding 9.
- The final result should also be constructed in the correct order, which can be done using another stack.
Space and Time Complexity
Time Complexity: O(n + m), where n and m are the lengths of the two linked lists. Space Complexity: O(n + m), for storing the digits in stacks.
Solution
To solve the problem, we can use two stacks to hold the digits of the two numbers represented by the linked lists. By pushing each digit onto its respective stack, we can then pop the digits from the stacks to perform the addition starting from the least significant digit. We maintain a carry variable to handle sums that exceed 9. Finally, we construct the resulting linked list in the correct order by iterating through the results saved in another stack.