CRCK array 1.4

本文介绍了两种判断两个字符串是否为字谜(anagram)的方法:一种使用排序算法,时间复杂度为nlogn,空间复杂度为O(1);另一种使用计数法,时间复杂度和空间复杂度均为O(n)。

Write a method to decide if two strings are anagrams or not.

There are two ways to solve this problem.

<pre name="code" class="cpp">// use the sort algorithm in C++.
// Time complexity (nLgn), space o(1);
bool isAnagrams(string a, string b) {
    // if the length of string a and b is not equal. There is no chance for them to be anagram.
    if(a.size() != b.size()) return false;
    sort(a.begin(), a.end()); sort(b.begin(), b.end());
    if(strcmp(a, b) == 0) return true;
    return false;
}
// another way is to use space O(n), time O(n)
bool isAnagrams(string a, string b) {
    // check the length first.
    if(a.size() != b.size()) return false;
    vector<int> counts(256, 0); // use an array to remember the number of occurrences. 
    for(int i = 0; i < a.size(); ++i) {
        counts[a[i]]++;
        counts[b[i]]--;
    }
    for(int i = 0; i < 256; ++i) {
        if(counts[i] < 0) return false; // any negative means the occurrences of a and b is different.
    }
    return true;
}




                
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值