Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. package DLList;
  2.  
  3. public class DLNode<T> {
  4.  
  5. public DLNode<T> prev;
  6. public T value ;
  7. public DLNode<T> next;
  8.  
  9.  
  10. public DLNode(DLNode<T> prev, T value, DLNode<T> next) {
  11. this.prev = prev;
  12. this.value = value;
  13. this.next = next;
  14. }
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement