lintcode-171-乱序字符串

171-乱序字符串

给出一个字符串数组S,找到其中所有的乱序字符串(Anagram)。如果一个字符串是乱序字符串,那么他存在一个字母集合相同,但顺序不同的字符串也在S中。

注意事项

所有的字符串都只包含小写字母

样例

对于字符串数组 ["lint","intl","inlt","code"]
返回 ["lint","inlt","intl"]

挑战

What is Anagram?

  • Two strings are anagram if they can be the same after change the order of characters.
标签

哈希表 字符串处理 优步 脸书

思路

利用排序和哈希表,所有的乱序字符串经过排序后会对应同一个字符串,所以以排序后的字符串为哈希表,记录此字符串出现次数,若出现不止一次,则为乱序字符串

code
class Solution {
public:    
    /**
     * @param strs: A list of strings
     * @return: A list of strings
     */
    vector<string> anagrams(vector<string> &strs) {
        // write your code here
        int size = strs.size(), i = 0;
        if (size <= 0) {
            return vector<string>();
        }

        vector<string> result;
        map<string, int> hash;
        for (i = 0; i < size; i++) {
            string temp = strs[i];
            sort(temp.begin(), temp.end());
            hash[temp]++;
        }
        for (i = 0; i < size; i++) {
            string temp = strs[i];
            sort(temp.begin(), temp.end());
            if (hash[temp] > 1) {
                result.push_back(strs[i]);
            }
        }
        return result;
    }
};

转载于:https://www.cnblogs.com/libaoquan/p/7277933.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值