LeetCode 49. 알파벳 이 위 어 그룹 해시

513 단어 데이터 구조
모든 단 어 를 정렬 한 다음 해시 표 에 저장 합 니 다. key 는 정렬 한 후 value 는 정렬 전 입 니 다.
class Solution {
public:
    vector> groupAnagrams(vector& strs) {
        vector> res;
        int n = strs.size();
        string key;
        map> mapp;
        for(int i = 0;isecond);
        }
        return res;
    }
};

좋은 웹페이지 즐겨찾기