前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode 339. 嵌套列表权重和(DFS)

LeetCode 339. 嵌套列表权重和(DFS)

作者头像
Michael阿明
发布2020-07-13 15:07:06
9040
发布2020-07-13 15:07:06
举报

1. 题目

给定一个嵌套的整数列表,请返回该列表按深度加权后所有整数的总和。

每个元素要么是整数,要么是列表。同时,列表中元素同样也可以是整数或者是另一个列表。

代码语言:javascript
复制
示例 1:
输入: [[1,1],2,[1,1]]
输出: 10 
解释: 因为列表中有四个深度为 2 的 1 ,和一个深度为 1 的 2。

示例 2:
输入: [1,[4,[6]]]
输出: 27 
解释: 一个深度为 1 的 1,一个深度为 2 的 4,一个深度为 3 的 6。
所以,1 + 4*2 + 6*3 = 27。

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/nested-list-weight-sum 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2. 解题

代码语言:javascript
复制
/**
 * // This is the interface that allows for creating nested lists.
 * // You should not implement it, or speculate about its implementation
 * class NestedInteger {
 *   public:
 *     // Constructor initializes an empty nested list.
 * 
 *     NestedInteger();
 *
 *     // Constructor initializes a single integer.
 * 
 *     NestedInteger(int value);
 *
 *     // Return true if this NestedInteger holds a single integer, rather than a nested list.
 * 
 *     bool isInteger() const;
 *
 *     // Return the single integer that this NestedInteger holds, if it holds a single integer
 *     // The result is undefined if this NestedInteger holds a nested list
 * 
 *     int getInteger() const;
 *
 *     // Set this NestedInteger to hold a single integer.
 * 
 *     void setInteger(int value);
 *
 *     // Set this NestedInteger to hold a nested list and adds a nested integer to it.
 * 
 *     void add(const NestedInteger &ni);
 *
 *     // Return the nested list that this NestedInteger holds, if it holds a nested list
 *     // The result is undefined if this NestedInteger holds a single integer
 * 
 *     const vector<NestedInteger> &getList() const;
 * };
 */
class Solution {
	int ans = 0;
public:
    int depthSum(vector<NestedInteger>& nestedList) {
    	if(nestedList.empty()) return 0;
    	dfs(nestedList,1);
    	return ans;
    }
    void dfs(vector<NestedInteger> &nestedList, int deep)
    {
    	for(int i = 0; i < nestedList.size(); ++i)
    	{
    		if(nestedList[i].isInteger())
    			ans += nestedList[i].getInteger() * deep;
    		else
    			dfs(nestedList[i].getList(),deep+1);
    	}
    }
};

4 ms 8.3 MB

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/07/02 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1. 题目
  • 2. 解题
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档