首页 > 其他 > 详细

leetcode 242. Valid Anagram

时间:2018-09-15 22:43:30      阅读:207      评论:0      收藏:0      [点我收藏+]

这个题只存储26个字母的,之前用的256个字符,所以可以直接用s[i]这种作为坐标,但现在只存储在26个中,坐标值是0到25,必须减去‘a‘才行,不减的话可能是100多的assic码

class Solution {
public:
    bool isAnagram(string s, string t) {
        int length1 = s.size();
        int length2 = t.size();
        if(length1 <= 0 || length2 <= 0)
            return true;
        vector<int> res(26,0);
        for(int i = 0;i < length1;i++)
            res[s[i] - a] += 1;
        for(int j = 0;j < length2;j++)
            res[t[j] - a] -= 1;
        for(int i =0;i < 26;i++){
            if(res[i] != 0)
                return false;
        }
        return true;
    }
};

https://blog.csdn.net/fly_yr/article/details/49886391

 

leetcode 242. Valid Anagram

原文:https://www.cnblogs.com/ymjyqsx/p/9652683.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!