logo Practice-It logo

LinkedListNode-2

Language/Type: Java ListNodes LinkedLists
Related Links:
Author: Allison Obourn (on 2016/11/14)

Write the code necessary to convert the following sequences of ListNode objects:

list1 -> [1] -> [2] /
list2 -> [3] /

Into this sequence of ListNode objects:

list1 -> [3] -> [2] /
list2 -> [1] /

There may be more than one way to write the code, but you are NOT allowed to change any existing node's data field value. You also should not create new ListNode objects unless necessary to add new values to the chain, but you may create a single ListNode variable to refer to any existing node if you like. If a variable does not appear in the "after" picture, it doesn't matter what value it has after the changes are made.

Assume that you are using ListNode class as defined in lecture and section:

public class ListNode {
    public int data;       // data stored in this node
    public ListNode next;  // a link to the next node in the list

    public ListNode() { ... }
    public ListNode(int data) { ... }
    public ListNode(int data, ListNode next) { ... }
}
Type your solution here:


This problem asks for bare code. Submit a fragment of Java code as described. Do not write any class or method heading around your code; just write the lines of code that will produce the result described.

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.