By Neilor Tonin, URI Brazil
Marcela needs your help to write a computer program about binary search tree. The program must have the following commands:
The input contains N lines and each line contains an operation using letters (A-Z, a-z) over a binary search tree, that initially will be empty. The first line of input contains an insertion (I). The next lines can have any command described above, like the given example. The end of input is determined by EOF.
Obs: Consider that will not be repeated elements in the tree.
Each line of the input excepting the lines with the "I" command must produce one output line. The output must be acording to the given example, remembering that "existe" means exist and "nao existe" means don't exist in portuguese. There is no blank space after the last line char, otherwise you`ll get Presentation Error.
Sample Input | Sample Output |
I c |
a c f h |