0 / 0
Settings
<<
<
>
>>
static void postorder(BinNode rt) {
if (rt == null) return;
postorder(rt.left());
postorder(rt.right());
visit(rt);
}
Created with Raphaƫl 2.1.2
A
B
C
D
E
F
G
H
I
Saving...
Server Error
Resubmit