Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. for (map <int, map<char, int> >::iterator it = nextState.begin(), end = nextState.end(); it != end; it++) {
  2. map <char, int> curState;
  3. for (map <char, int>::iterator it1 = curState.begin(), end1 = curState.end(); it1 != end1; it1++)
  4. cout << it -> first << "-" << it1 -> first << "->" << it1 -> second;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement