Given a binary tree, return thepostordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1].思路...
                            
                            
                                分类:
其他好文   时间:
2014-09-24 22:57:37   
                                阅读次数:
187
                             
                         
                    
                        
                            
                            
                                [leetcode]Binary Tree Postorder Traversal...
                            
                            
                                分类:
其他好文   时间:
2014-09-22 14:28:42   
                                阅读次数:
121
                             
                         
                    
                        
                            
                            
                                Given a binary tree, return the postorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3},
   1
         2
    /
   3
return [3,2,1].
Note: Recursive solut...
                            
                            
                                分类:
其他好文   时间:
2014-09-19 17:42:05   
                                阅读次数:
158
                             
                         
                    
                        
                            
                            
                                Given inorder and postorder traversal of a tree, construct the binary tree.与Construct Binary Tree from Inorder and Preorder Traversal问题非常类似,唯一区别在于这一次确...
                            
                            
                                分类:
其他好文   时间:
2014-09-16 12:09:50   
                                阅读次数:
212
                             
                         
                    
                        
                            
                            
                                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...
                            
                            
                                分类:
其他好文   时间:
2014-09-13 20:07:55   
                                阅读次数:
287
                             
                         
                    
                        
                            
                            
                                Construct Binary Tree from Inorder and Postorder Traversal
 Total Accepted: 14363 Total
 Submissions: 54254My Submissions
Given inorder and postorder traversal of a tree, construct the bina...
                            
                            
                                分类:
其他好文   时间:
2014-09-11 07:41:51   
                                阅读次数:
149
                             
                         
                    
                        
                            
                            
                                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...
                            
                            
                                分类:
其他好文   时间:
2014-09-07 14:44:25   
                                阅读次数:
208
                             
                         
                    
                        
                            
                            
                                Sudoku Solver
 Total Accepted: 11752 Total
 Submissions: 56537My Submissions
Write a program to solve a Sudoku puzzle by filling the empty cells.
Empty cells are indicated by the character...
                            
                            
                                分类:
其他好文   时间:
2014-09-06 22:37:04   
                                阅读次数:
244
                             
                         
                    
                        
                            
                            
                                Binary Tree Level Order Traversal II
 Total Accepted: 16983 Total
 Submissions: 54229My Submissions
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie...
                            
                            
                                分类:
其他好文   时间:
2014-09-05 18:22:41   
                                阅读次数:
212
                             
                         
                    
                        
                            
                            
                                Binary Tree Level Order Traversal
 Total Accepted: 20571 Total
 Submissions: 66679My Submissions
Given a binary tree, return the level order traversal of its nodes' values. (ie, from left t...
                            
                            
                                分类:
其他好文   时间:
2014-09-05 18:22:21   
                                阅读次数:
271