Recent content by sohizzle

  1. S

    Need help with java, a toString method in LinearNode class?

    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...
Back
Top