Below is what I have right now, I need to add some methods with requirement, and it is about reverse
(a) Method for List class, reverse To String
(b) and recReverse To String
(c), Copy Constructor Method and smallest First
(d)Method see attachments for details and requirement, I know it is a long code but I will post this question like as many times as you want, so you can answer all of it, let me know how many you want.
Thank you very much!!!List. java package list demo; public class List { private class Node { int value; Node next; / Constructor. @param val The element to store in the node. @param n The reference to the successor node. / Node(int val, Node n) { value = val; next = n; } / Constructor. @param val The element to store in the node. / Node(int val) { // Call the other (sister) constructor. this(val, null); } }