Consider the following class: class IntNode { private i…
Consider the following class: class IntNode { private int data; // data stored in node private IntNode link; // reference to another node Complete the following constructor following the specifications given in lecture: public IntNode (int initialData) { }