2003 Fall / 화일처리 / 이석호 교수님 /** Binary Search Tree zzun hello82@unitel.co.kr http://zzun.net **/ #include struct znode // binary search tree node { int data; // data type is integer struct znode * left; // left subtree struct znode * right; // right subtree }; struct znode * root = NULL; // root node, initially NULL void print_tree_inorder(struct znode* tree) // print tree in inorder (left -> par..