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

Anagrams

时间:2014-06-04 19:29:39      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

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

Note: All inputs will be in lower-case.

bubuko.com,布布扣
class Solution {
public:
    vector<string> anagrams(vector<string> &strs) 
    {
        vector<string> result;
        map<string,int> mapindex;
        for(int i=0;i<strs.size();i++)
        {
            string str=strs[i];
            sort(str.begin(),str.end());
            if(mapindex.find(str)==mapindex.end())
                mapindex[str]=i;
            else
            {
                if(mapindex[str]>-1)
                {
                    result.push_back(strs[mapindex[str]]);
                    mapindex[str]=-1;
                }
                result.push_back(strs[i]);
            }
        }
        return result;
    }
}; 
bubuko.com,布布扣

Anagrams,布布扣,bubuko.com

Anagrams

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/erictanghu/p/3759378.html

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