Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. package com.reverse.list.source;
  2.  
  3. /**
  4. * @author arpan
  5. *
  6. */
  7. public class Node {
  8.  
  9. public Node next;
  10. public int value;
  11. public Node(int value) {
  12. // TODO Auto-generated constructor stub
  13. this.value = value;
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement