Find Elements in a Contaminated Binary Tree

给一个二叉树, 里面全是-1, 返回一个二叉树, root是0, root.left = 2 * root.val + 1, root.right = 2 * root.val + 2 . 这个就直接写就好了