Lintcode482-Binary Tree Level Sum-Easy
Posted jessiezyr
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lintcode482-Binary Tree Level Sum-Easy相关的知识,希望对你有一定的参考价值。
482. Binary Tree Level Sum
Given a binary tree and an integer which is the depth of the target level.
Calculate the sum of the nodes in the target level.
Example
Example 1:
Input:
1
/ 2 3
/ / 4 5 6 7
/ 8 9
and depth=2
Output:5
Example 2:
Input:
1
/ 2 3
/ / 4 5 6 7
/ 8 9
and depth=3
Output:22
思路:递归法
以上是关于Lintcode482-Binary Tree Level Sum-Easy的主要内容,如果未能解决你的问题,请参考以下文章
lintcode-medium-Segment Tree Build II