struct tnode {
  int content;
  struct tnode *left, *right;
};