nguyentruong98

Untitled

Nov 11th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. void printbst(Node* p)
  2. {
  3.       if(root == NULL)
  4.       return;
  5.       printf("%s %s %s", p->Name, p->Phone, p->Email);
  6.       printfbst(p->leftChild);
  7.       printfbst(p->rightChild);
  8.       return;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment