void printAll(const Node* t)
{
  if(t != NULL) 
  {
    printAll(t->left);
    cout << t->item << "\n";
    printAll(t->right);
  }
}