Implement an iterator to flatten a 2d vector.
For example,
Given 2d vector =
Given 2d vector =
[ [1,2], [3], [4,5,6] ]
By calling next repeatedly until hasNext returns false, the order of elements returned by next should be:
[1,2,3,4,5,6]
.
Hint:
- How many variables do you need to keep track?
- Two variables is all you need. Try with
x
andy
. - Beware of empty rows. It could be the first few rows.
- To write correct code, think about the invariant to maintain. What is it?
- The invariant is
x
andy
must always point to a valid point in the 2d vector. Should you maintain your invariant ahead of time or right when you need it? - Not sure? Think about how you would implement
hasNext()
. Which is more complex? - Common logic in two different places should be refactored into a common method.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Vector2D { | |
public: | |
Vector2D(vector<vector<int>>& _vec2d) { | |
vec2d = _vec2d; | |
x=0; | |
y=0; | |
} | |
bool helper(int& x, int& y){ | |
while(y>=vec2d[x].size()){ | |
x++; | |
if(x>=vec2d.size()) | |
return false; | |
y=0; | |
} | |
return true; | |
} | |
int next() { | |
int res=vec2d[x][y]; | |
y++; | |
return res; | |
} | |
bool hasNext() { | |
return vec2d.size()==0? false:helper(x, y); | |
} | |
vector<vector<int> > vec2d; | |
int x; | |
int y; | |
}; | |
/** | |
* Your Vector2D object will be instantiated and called as such: | |
* Vector2D i(vec2d); | |
* while (i.hasNext()) cout << i.next(); | |
*/ |
No comments:
Post a Comment