2015年1月26日

Binary Tree Postorder Traversal

摘要: 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 @ 2015-01-26 16:09 luckygxf 阅读(145) 评论(0) 推荐(0) 编辑

导航