码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode] 341. Flatten Nested List Iterator

时间:2016-06-24 08:06:17      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:

Given a nested list of integers, implement an iterator to flatten it.

Each element is either an integer, or a list -- whose elements may also be integers or other lists.

Example 1:
Given the list [[1,1],2,[1,1]],

By calling next repeatedly until hasNext returns false, the order of elements returned by next should be: [1,1,2,1,1].

 

Example 2:
Given the list [1,[4,[6]]],

By calling next repeatedly until hasNext returns false, the order of elements returned by next should be: [1,4,6].

 

Solution:

class NestedIterator {
public:
    NestedIterator(vector<NestedInteger> &nestedList) 
    {
        for (int i = nestedList.size() - 1; i >= 0; i--)
        {
            stk.push(nestedList[i]);
        }
    }

    int next() 
    {
         NestedInteger t = stk.top(); // access top value
         stk.pop();
         return t.getInteger();
    }

    bool hasNext() 
    {
        while (!stk.empty())
        {
            NestedInteger t = stk.top(); // access top value
            if (t.isInteger())
                return true;
            stk.pop();
            vector<NestedInteger> tl = t.getList();
            for (int i = tl.size() - 1; i >= 0; i--)
            {
                stk.push(tl[i]);
            }
        }
        return false;
    }
    
private:
    stack<NestedInteger> stk;
};

 

[leetcode] 341. Flatten Nested List Iterator

标签:

原文地址:http://www.cnblogs.com/ym65536/p/5612960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!