049.Group-Anagrams 对每个string按从小到大排序,以此为key建立Hash表 map<string,vector>。属于同一组Anagrams的字符串必定有相同的键值。 Leetcode Link