LeetCode 329. 矩阵中的最长递增路径(C++)*

阿里云国内75折 回扣 微信号:monov8
阿里云国际,腾讯云国际,低至75折。AWS 93折 免费开户实名账号 代冲值 优惠多多 微信号:monov8 飞机:@monov6

思路
采用DFS来遍历所有元素并用数组存储
原题链接https://leetcode.cn/problems/flatten-nested-list-iterator/description/?favorite=2ckc81c

1.题目如下

给你一个嵌套的整数列表 nestedList 。每个元素要么是一个整数要么是一个列表该列表的元素也可能是整数或者是其他列表。请你实现一个迭代器将其扁平化使之能够遍历这个列表中的所有整数。

实现扁平迭代器类 NestedIterator

NestedIterator(List nestedList) 用嵌套列表 nestedList 初始化迭代器。
int next() 返回嵌套列表的下一个整数。
boolean hasNext() 如果仍然存在待迭代的整数返回 true 否则返回 false 。
你的代码将会用下述伪代码检测

initialize iterator with nestedList
res = []
while iterator.hasNext()
append iterator.next() to the end of res
return res
如果 res 与预期的扁平化列表匹配那么你的代码将会被判为正确。

示例 1

输入nestedList = [[1,1],2,[1,1]]
输出[1,1,2,1,1]

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

示例 2

输入nestedList = [1,[4,[6]]]
输出[1,4,6]

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

提示

1 <= nestedList.length <= 500
嵌套列表中的整数值在范围 [-106, 106] 内

2.代码如下

/**
 * // 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 {
private:
    //思路一DFS递归实现
    vector<int> temp;
    vector<int>::iterator idx;
    void dfs(vector<NestedInteger> &nestedList){
        for(auto x:nestedList){
            if(x.isInteger()){
                temp.push_back(x.getInteger());
            }
            else{
                dfs(x.getList());
            }
        }
    }
public:
    
    NestedIterator(vector<NestedInteger> &nestedList) {
        dfs(nestedList);
        idx=temp.begin();
    }
    
    //注意这里不能拆开表示
    int next() {
        return *idx++;
    }
    
    bool hasNext() {
        if(idx==temp.end()){
            return false;
        }
        return true;
    }
};

/**
 * Your NestedIterator object will be instantiated and called as such:
 * NestedIterator i(nestedList);
 * while (i.hasNext()) cout << i.next();
 */
阿里云国内75折 回扣 微信号:monov8
阿里云国际,腾讯云国际,低至75折。AWS 93折 免费开户实名账号 代冲值 优惠多多 微信号:monov8 飞机:@monov6
标签: c++

“LeetCode 329. 矩阵中的最长递增路径(C++)*” 的相关文章