std::map<std::string, int>::iterator search_result;

search_result = my_list.find(find_key);


if(strcmp((*search_result).first.c_str(), ""))

{

fix = 1

}


이게 my_list 에서 find 했다가 아무 값도 없으면 fix =1 로 해준단 건가요?

first.c_str 이 머죠?