Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 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 << nextState -> first << "-" << curState -> first << "->" << curState -> second;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement