Binary Tree Postorder Traversal <leetcode>
摘要:
Given a binary tree, return thepostordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1].No... 阅读全文
posted @ 2014-09-07 14:08 菱纱梦 阅读(178) 评论(0) 推荐(0) 编辑