Guest User

Untitled

a guest
Sep 30th, 2015
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1.         private struct Node<Type>
  2.         {
  3.             public Type val;
  4.             public Node ptr;
  5.  
  6.             public Node(Type val, Node prev)
  7.             {
  8.                 this.val = val;
  9.                 this.ptr = prev;
  10.             }
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment