标签:bsp int val NPU lin eve treenode solution markdown
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 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
标签:bsp int val NPU lin eve treenode solution markdown
原文地址:https://www.cnblogs.com/Jessiezyr/p/10661423.html