Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. public static class Cell<E>{
  2.  
  3.       Cell<E> next;
  4.       E obj;
  5.       public Cell(){}
  6.       public Cell(E obj, Cell<E> lst){
  7.      
  8.           next = lst;
  9.           this.obj = obj;      
  10.       }  
  11.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement