Question: java 3. Sum Lists: You have two numbers represented by a linked list, where each node contains a single digit. The digits are stored in

java
java 3. Sum Lists: You have two numbers represented by a linked

3. Sum Lists: You have two numbers represented by a linked list, where each node contains a single digit. The digits are stored in reverse order, such that the 1's digit is at the head of the list. Write a java program that adds the two numbers and returns the sum as a linked list. (4Marks) Input: (7-> 1 -> 6) + (5 -> 9 -> 2). That is,617 + 295. Output: 2 -> 1 -> 9. That is, 912. 4. FOLLOW UP (3Marks) Suppose the digits are stored in forward order. Repeat the above problem. Input: (6-> 1 -> 7) + (2 -> 9 -> 5). That is, 617 + 295. Output: 9 -> 1->2. That is, 912

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!