Guest User

Untitled

a guest
Jul 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. struct Node
  2. {
  3. int leftvalue;
  4. int rightvalue;
  5. int colour;
  6.  
  7. Node * leftchild;
  8. Node * rightchild;
  9. } ;
Add Comment
Please, Sign In to add comment