编程语言
首页 > 编程语言> > 【LeetCode】341. 扁平化嵌套列表迭代器 Flatten Nested List Iterator(C++)

【LeetCode】341. 扁平化嵌套列表迭代器 Flatten Nested List Iterator(C++)

作者:互联网

目录


题目来源:https://leetcode-cn.com/problems/flatten-nested-list-iterator

题目描述

给你一个嵌套的整型列表。请你设计一个迭代器,使其能够遍历这个整型列表中的所有整数。

列表中的每一项或者为一个整数,或者是另一个列表。其中列表的元素也可能是整数或是其他列表。

示例 1:

输入: [[1,1],2,[1,1]]
输出: [1,1,2,1,1]
解释: 通过重复调用 next 直到 hasNext 返回 false,next 返回的元素的顺序应该是: [1,1,2,1,1]。
示例 2:

输入: [1,[4,[6]]]
输出: [1,4,6]
解释: 通过重复调用 next 直到 hasNext 返回 false,next 返回的元素的顺序应该是: [1,4,6]。

题目大意

递归

/**
 * class NestedInteger {
 *   public:
 *     bool isInteger() const;
 *     int getInteger() const;
 *     const vector<NestedInteger> &getList() const;
 * };
 */
vector<int> cnt;
class NestedIterator {
public:
    int index = 0, len;
    NestedIterator(vector<NestedInteger> &nestedList) {
        for (int i = 0 ; i < nestedList.size() ; ++i){
            if (nestedList[i].getList().size() == 0){
                if (nestedList[i].isInteger())
                    cnt.push_back(nestedList[i].getInteger());
            }
            else
                NestedIterator(nestedList[i].getList());
        }
        len = cnt.size();
    }
    
    int next() {
       return cnt[index++];
    }
    
    bool hasNext() {
        if (index < len)
            return true;
        cnt.clear();
        return false;
    }
};

/**
 * Your NestedIterator object will be instantiated and called as such:
 * NestedIterator i(nestedList);
 * while (i.hasNext()) cout << i.next();
 */

复杂度分析

标签:cnt,Iterator,复杂度,List,C++,列表,next,NestedIterator,nestedList
来源: https://blog.csdn.net/lr_shadow/article/details/115118689