leetcode 242. Valid Anagram
Posted 去做点事情
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 242. Valid Anagram相关的知识,希望对你有一定的参考价值。
这个题只存储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的主要内容,如果未能解决你的问题,请参考以下文章