43行代码AC——例题6-8 树(Tree,UVa 548)——解题报告
勵志用盡量少的代碼做高效的表達。
You are to determine the value of the leaf node in a given binary tree that is the terminal node of a
path of least value from the root of the binary tree to any leaf. The value of a path is the sum of values
of nodes along that path.
Input
The input file will contain a description of the binary tree given as the inorder and postorder traversal
sequences of that tree. Your program will read two line (until end of file) from the input file. The first
line will contain the sequence of values associated with an inorder traversal of the tree and the second
line will contain the sequence of values associated with a postorder traversal of the tree. All values
will be different, greater than zero and less than 10000. You may assume that no binary tree will have
more than 10000 nodes or less than 1 node.
Output
For each tree description you should output the value of the leaf node of a path of least value. In the
case of multiple paths of least value you should pick the one with the least value on the terminal node.
Sample Input
3 2 1 4 5 7 6
3 1 2 5 6 7 4
7 8 11 3 5 16 12 18
8 3 11 7 16 18 12 5
255
255
Sample Output
1
3
255
題目大意
給定二叉樹的中序和后序遍歷序列,求該二叉樹中根到葉子的路徑和最小者,若存在多個解,則選擇葉子權值最小者(葉子權值不重復)。
思路分析
此題本質是中后序建樹+求路徑最小權。
(PS:書上的數組建樹用不習慣,于是自己寫了一個指針建樹。)
關鍵在于中序和后序建樹,后序遍歷序列的最后一個元素來確定根(前序的話是第一個元素確定根),中序序列來劃分左右子樹,如此遞歸建立樹
對于路徑和求解,建樹完成后對樹進行dfs
收獲:
1、鞏固了DFS
2、掌握了中后序遍歷建樹。
3、掌握了求最小權路徑的方法。
擇苦而安,擇做而樂,虛擬現實終究比不過真實精彩之萬一。
總結
以上是生活随笔為你收集整理的43行代码AC——例题6-8 树(Tree,UVa 548)——解题报告的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 应该掌握的神奇函数——sscanf的用法
- 下一篇: 31行代码AC——PTA 求二叉树的叶子