Leetcode 284. 窥探迭代器 (Iterator设计,提前走一步,维护变量)

2021/9/30 23:10:59

本文主要是介绍Leetcode 284. 窥探迭代器 (Iterator设计,提前走一步,维护变量),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

/*
 * Below is the interface for Iterator, which is already defined for you.
 * **DO NOT** modify the interface for Iterator.
 *
 *  class Iterator {
 *		struct Data;
 * 		Data* data;
 *  public:
 *		Iterator(const vector<int>& nums);
 * 		Iterator(const Iterator& iter);
 *
 * 		// Returns the next element in the iteration.
 *		int next();
 *
 *		// Returns true if the iteration has more elements.
 *		bool hasNext() const;
 *	};
 */

class PeekingIterator : public Iterator {
private:
    int _next;
    bool _hasNext;
public:
	PeekingIterator(const vector<int>& nums) : Iterator(nums) {
	    // Initialize any member here.
	    // **DO NOT** save a copy of nums and manipulate it directly.
	    // You should only use the Iterator interface methods.
        _next = Iterator::next();
        _hasNext = Iterator::hasNext();
	    
	}
	
    // Returns the next element in the iteration without advancing the iterator.
	int peek() {
        return _next;
	}
	
	// hasNext() and next() should behave the same as in the Iterator interface.
	// Override them if needed.
	int next() {
	    int val = _next;
        _hasNext = Iterator::hasNext();
        if (_hasNext) {
            _next = Iterator::next();
        }
        return val;
	}
	
	bool hasNext() const {
	    return _hasNext;
	}
};



这篇关于Leetcode 284. 窥探迭代器 (Iterator设计,提前走一步,维护变量)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程