nguyentruong98

Untitled

Nov 11th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 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.       Node* q = printfbst(p->leftChild);
  7.       Node* r = printfbst(p->rightChild);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment