LeetCode145——Binary Tree Postorder Traversal二叉树后序遍历
Givenabinarytree,returnthepostordertraversalofitsnodes'values.Forexample:Givenbinarytree{1,#,2,3},1\2/3return[3,2,1].Note:Recursivesolutionistrivial,couldyoudoititeratively?实现:classSolution{public: v