Skip to content

Instantly share code, notes, and snippets.

@varavut
Last active August 29, 2015 14:27
Show Gist options
  • Select an option

  • Save varavut/c924b3add376a5a0dc81 to your computer and use it in GitHub Desktop.

Select an option

Save varavut/c924b3add376a5a0dc81 to your computer and use it in GitHub Desktop.
function printTree(n){
if(n.leaf1)
printTree(n.leaf1);
if(n.leaf2)
printTree(n.leaf2);
if(n.a)
console.log(n.a);
}
printTree(n); // n คือ tree ตามด้านบน
===output===
3
2
5
6
4
1
9
8
11
12
10
7
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment