Skip to content

Instantly share code, notes, and snippets.

@kidapu
Last active January 8, 2016 11:58
Show Gist options
  • Save kidapu/c9d170b3bcd61d2a44d9 to your computer and use it in GitHub Desktop.
Save kidapu/c9d170b3bcd61d2a44d9 to your computer and use it in GitHub Desktop.
C++Study.txt
map<int,int> aa;
aa[0] = 0;
aa[1] = 0;
aa[2] = 2;
for( auto bb : aa )
{
cout << bb.first << ":" << bb.second << endl;
aa.erase(bb.first);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment