力扣242-有效的字母异位词

有效字母的异位词

题目链接

解题思路:

  1. 遍历两个字符串,统计每个字符串出现的字数
  2. 遍历两个字符串,比较两个字符串中某个字符出现的次数是否相等
class Solution {
public:
    bool isAnagram(string s, string t) {
        unordered_map maps;
        unordered_map mapt;
        bool ans = true;
        for(int i = 0;i

你可能感兴趣的:(算法-每日一练,leetcode,链表,算法)