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

Anagrams -- leetcode

时间:2015-01-31 16:29:04      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:面试   leetcode   anagrams   

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

Note: All inputs will be in lower-case.


算法思路:

将单词进行排序。

用map统计排序后相等的出现次数。

将次数大于1的单词放入结果集。

第1次出现时,因次数最终是否大于1不明郎,将其暂存入另一个数组。

该算法在leetcode上实际执行时间为67ms。


class Solution {
public:
    vector<string> anagrams(vector<string> &strs) {
        vector<string> ans;
        unordered_map<string, int> count;
        vector<pair<string, int> > first;

        for (int i=0; i<strs.size(); i++) {
                string tmp = strs[i];
                sort(tmp.begin(), tmp.end());
                if (count[tmp]++)
                        ans.push_back(strs[i]);
                else
                        first.push_back(make_pair(tmp, i));
        }

        for (auto i: first) {
                if (count[i.first] > 1)
                        ans.push_back(strs[i.second]);
        }

        return ans;
    }
};


Anagrams -- leetcode

标签:面试   leetcode   anagrams   

原文地址:http://blog.csdn.net/elton_xiao/article/details/43340175

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