I have written the linearNode class but need help with toString method which returns the string version of the element only. Next field is not returned
public class LinearNode<T> {
private LinearNode<T> next;
private T element;
public LinearNode(T elem) {
this.next = null...