Leetcode341. 扁平化嵌套列表迭代器(Flatten Nested List Iterator)

版权声明:转载请说明出处!!! https://blog.csdn.net/u012585868/article/details/84029732

题目描述

给定一个嵌套的整型列表。设计一个迭代器,使其能够遍历这个整型列表中的所有整数。
列表中的项或者为一个整数,或者是另一个列表。
示例 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]。

解题思路:

解这道题需要好好看清楚初始代码里面注释的内容,大致如下:

  1. 对于 bool isInteger() const;如果此NestedInteger包含单个整数而不是嵌套列表,则返回true。
  2. 对于 int getInteger() const;返回此NestedInteger保存的单个整数(如果它包含单个整数),如果此NestedInteger包含嵌套列表,则结果未定义。
  3. 对于const vector < NestedInteger >&getList()const;如果它拥有嵌套列表,则返回此NestedInteger包含的嵌套列表,如果此NestedInteger包含单个整数,则结果未定义。ps:为什么这样用?请看超链接里面文章关于返回值的引用章节内容。

代码:

/**
 * // This is the interface that allows for creating nested lists.
 * // You should not implement it, or speculate about its implementation
 * class NestedInteger {
 *   public:
 *     // 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;
 *
 *     // 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 NestedIterator {
public:
    //isInteger() *类中的三个函数放在这里时刻提醒自己*
    //getInteger()
    //getList()
    vector<int> ans;
    int cnt=0;
    NestedIterator(vector<NestedInteger> &nestedList) {
        res(nestedList);
    }
    
    void res(vector<NestedInteger> &nestedList){
        for(auto t:nestedList){
            if(t.isInteger()){
                ans.push_back(t.getInteger());
            }
            else{
                res(t.getList());
            }
        }
    }

    int next() {
        return ans[cnt++];
    }

    bool hasNext() {
        return cnt<ans.size();
    }
};

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

超链接:const引用返回值

猜你喜欢

转载自blog.csdn.net/u012585868/article/details/84029732