码迷,mamicode.com
首页 > 其他好文 > 详细

【leetcode】Anagrams (middle)

时间:2015-03-10 22:51:58      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

Given an array of strings, return all groups of strings that are anagrams.

Note: All inputs will be in lower-case.

 

anagrams 的意思是两个词用相同的字母组成  比如 “dog" "god"

 

思路:

把单词排序 如 dog 按字母排序变为 dgo

用unordered_map<string, int> 记录排序后序列第一次出现时,字符串在输入string向量中的位置

用vector<bool> 记录每个输入字符串是否为anagram, 如果在map中发现已经存在了,就记录当前和初始的字符串都是anagram

class Solution {
public:
    vector<string> anagrams(vector<string> &strs) {
        vector<string> ans;
        vector<bool> isanagrams(strs.size(), false);
        unordered_map<string, int> hash;
        if(strs.size() == 0)
            return ans;

        for(int i = 0; i < strs.size(); i++)
        {
            string cur = strs[i];
            sort(cur.begin(), cur.end());
            if(hash.find(cur) == hash.end()) //没出现过
            {
                hash[cur] = i; //记录第一次出现是strs中的哪一个    
            }
            else //出现过
            {
                isanagrams[hash[cur]] = true;
                isanagrams[i] = true;
            }
        }

        for(int j = 0; j < strs.size(); j++)
        {
            if(isanagrams[j] == true)
            {
                ans.push_back(strs[j]);
            }
        }

        return ans;
    }
};

 

【leetcode】Anagrams (middle)

标签:

原文地址:http://www.cnblogs.com/dplearning/p/4328392.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!