Advertisement
ZazoTazo

Element (SLL)

Aug 23rd, 2020
2,087
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class Element {
  2.     Object data;
  3.     Element next;
  4.    
  5.     public Element(Object data, Element next){
  6.         this.data = data;
  7.         this.next = next;
  8.     }
  9.    
  10.     public void print(){
  11.         System.out.println(data);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement