LeetCode 49. 字母异位词分组 哈希

对每个词先排序,然后存到一个哈希表中,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;
    }
};

 

你可能感兴趣的:(数据结构)