map<string, int>::iterator it; 반복자
#include #include using namespace std; int main() { map dic; dic["a"] = 1; dic["b"] = 2; dic["c"] = 3; dic["d"] = 4; int a = dic["e"]; map::iterator it; for (it= dic.begin(); it != dic.end(); it++) { cout first
Programming Languages/C++ & Algorithm
2020. 10. 8. 11:31