
二叉树的每条从根节点到叶节点的路径都代表一个数字,累加所有数字。
129. Sum Root to Leaf Numbers
Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.
An example is the root-to-leaf path 1->2->3 which represents the number 123.
Find the total sum of all root-to-leaf numbers.
For example,
1 |
1 |
The root-to-leaf path 1->2 represents the number 12.
The root-to-leaf path 1->3 represents the number 13.
Return the sum = 12 + 13 = 25.
算法:基于二叉树前序遍历算法,累加所有路径代表的数字。
1 |
public int (TreeNode root) { |




近期评论