Problem C: 二叉排序树的删除

Problem C: 二叉排序树的删除

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 15  Solved: 6
[Submit] [Status] [Web Board] [Creator:]

Description

将一序列建立二叉排序树,删除某个数后,中序遍历后输出。

Input

第一行输入n;n表示建立二叉树的n个数。
第二行输入建立二叉排序树的n个数。
第三行输入m,表示要删除的数。

Output

输出一行,将处理好的二叉排序数中序遍历后输出。

Sample Input Copy

10
20 10 30 5 15 40 3 4 19 18
4

Sample Output Copy

3 5 10 15 18 19 20 30 40