list를 사용하다가 두 개의 데이터를 담아야 해서 pair를 사용했다. 찾을 때는 통상 first로 찾았는데, 이는 사실 map을 이용하는 편이 훨씬 편하다. list에서 pair를 사용하여 둘 다 만족하는 데이터를 검색하는 약간의 뻘짓을 해보았다. #include #include #include #include using namespace std; int main() { list list1; list1.emplace_back("1", "1"); list1.emplace_back("2", "1"); list1.emplace_back("2", "3"); string row = "2"; string col = "1"; auto func = [row,col](pair const & b) { return b...