document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Node {
  2.     Object data;
  3.     Node next;  //node next is used to point to the next node
  4.    
  5.     Node(Object element) {
  6.         data = element; //constructor to initialize the first node
  7.     }
  8. }
');