LC 341 扁平化巢狀列表迭代器

2021-10-22 23:11:09 字數 915 閱讀 7232

給你乙個巢狀的整型列表。請你設計乙個迭代器,使其能夠遍歷這個整型列表中的所有整數。

列表中的每一項或者為乙個整數,或者是另乙個列表。其中列表的元素也可能是整數或是其他列表。

樣例

輸入: [[1,1],2,[1,1]]

輸出: [1,1,2,1,1]

解釋: 通過重複呼叫 next 直到 hasnext 返回 false,next 返回的元素的順序應該是: [1,1,2,1,1]。

使用dfs先將原list中的元素依次儲存到乙個陣列中,完後對陣列中的元素一次操作即可

注意陣列尺寸1e5+,題目中貌似沒有提示,開的太小會出錯

c++ **

/**

* // this is the inte***ce that allows for creating nested lists.

* // you should not implement it, or speculate about its implementation

* class nestedinteger ;

*/const

int n =

100005

;class

nestediterator

}nestediterator

(vector

&nestedlist)

intnext()

bool

hasnext()

};/** * your nestediterator object will be instantiated and called as such:

* nestediterator i(nestedlist);

* while (i.hasnext()) cout << i.next();

*/

341 扁平化巢狀列表迭代器

給定乙個巢狀的整型列表。設計乙個迭代器,使其能夠遍歷這個整型列表中的所有整數。列表中的項或者為乙個整數,或者是另乙個列表。示例 1 輸入 1,1 2,1,1 輸出 1,1,2,1,1 解釋 通過重複呼叫 next 直到 hasnext 返回false,next 返回的元素的順序應該是 1,1,2,1...

341 扁平化巢狀列表迭代器

難度 中等 題目描述 思路總結 方法一 用遞迴扁平化整個list 方法二 用棧在呼叫hasnext 的時候找到下乙個元素 題解一 this is the inte ce that allows for creating nested lists.you should not implement it...

341 扁平化巢狀列表迭代器

題目描述 給你乙個巢狀的整型列表。請你設計乙個迭代器,使其能夠遍歷這個整型列表中的所有整數。列表中的每一項或者為乙個整數,或者是另乙個列表。其中列表的元素也可能是整數或是其他列表。示例 1 輸入 1,1 2,1,1 輸出 1,1,2,1,1 解釋 通過重複呼叫 next 直到 hasnext 返回 ...