|
|
|
|
|
by scotty79
4027 days ago
|
|
> invert a binary tree What does that even mean? Swap left-right child nodes? Write it linearly (n-th children at 2n and 2n+1) and reverse it as if it was a string? OP later described it as "to min-max the tree, ascending to descending." confusing me further. |
|