摘要:
题目:Given a binary tree, return thepostordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1]... 阅读全文
posted @ 2014-06-25 21:39
平凡的幸福...
阅读(432)
评论(0)
推荐(0)
摘要:
题目:Given a binary tree, return thepreordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,2,3].... 阅读全文
posted @ 2014-06-25 21:23
平凡的幸福...
阅读(231)
评论(0)
推荐(0)
摘要:
题目:Given a binary tree, return theinordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,3,2].N... 阅读全文
posted @ 2014-06-25 21:02
平凡的幸福...
阅读(418)
评论(0)
推荐(0)