Guest User

Untitled

a guest
Jun 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #ifndef _TREE_H
  2. #define _TREE_H
  3.  
  4. typedef
  5. struct node
  6. {
  7. int data;
  8.  
  9. struct node *parent;
  10. struct node *left;
  11. struct node *right;
  12. }
  13. TreeNode;
  14.  
  15. #endif
Add Comment
Please, Sign In to add comment