Domanda di colloquio di Morgan Stanley

Write a method that can reverse a binary tree (mirroring).

Risposta di colloquio

Anonimo

23 feb 2014

recurse over each node: switching both left and rights of a node, and calling your function again on both child nodes (checking for nulls first)