返回介绍

solution / 0200-0299 / 0242.Valid Anagram / README_EN

发布于 2024-06-17 01:04:02 字数 6865 浏览 0 评论 0 收藏 0

242. Valid Anagram

中文文档

Description

Given two strings s and t, return true _if_ t _is an anagram of_ s_, and_ false _otherwise_.

An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.

 

Example 1:

Input: s = "anagram", t = "nagaram"
Output: true

Example 2:

Input: s = "rat", t = "car"
Output: false

 

Constraints:

  • 1 <= s.length, t.length <= 5 * 104
  • s and t consist of lowercase English letters.

 

Follow up: What if the inputs contain Unicode characters? How would you adapt your solution to such a case?

Solutions

Solution 1: Counting

We first determine whether the length of the two strings is equal. If they are not equal, the characters in the two strings must be different, so return false.

Otherwise, we use a hash table or an array of length $26$ to record the number of times each character appears in the string $s$, and then traverse the other string $t$. Each time we traverse a character, we subtract the number of times the corresponding character appears in the hash table by one. If the number of times after subtraction is less than $0$, the number of times the character appears in the two strings is different, return false. If after traversing the two strings, all the character counts in the hash table are $0$, it means that the characters in the two strings appear the same number of times, return true.

The time complexity is $O(n)$, the space complexity is $O(C)$, where $n$ is the length of the string; and $C$ is the size of the character set, which is $C=26$ in this problem.

class Solution:
  def isAnagram(self, s: str, t: str) -> bool:
    if len(s) != len(t):
      return False
    cnt = Counter(s)
    for c in t:
      cnt[c] -= 1
      if cnt[c] < 0:
        return False
    return True
class Solution {
  public boolean isAnagram(String s, String t) {
    if (s.length() != t.length()) {
      return false;
    }
    int[] cnt = new int[26];
    for (int i = 0; i < s.length(); ++i) {
      ++cnt[s.charAt(i) - 'a'];
      --cnt[t.charAt(i) - 'a'];
    }
    for (int i = 0; i < 26; ++i) {
      if (cnt[i] != 0) {
        return false;
      }
    }
    return true;
  }
}
class Solution {
public:
  bool isAnagram(string s, string t) {
    if (s.size() != t.size()) {
      return false;
    }
    vector<int> cnt(26);
    for (int i = 0; i < s.size(); ++i) {
      ++cnt[s[i] - 'a'];
      --cnt[t[i] - 'a'];
    }
    return all_of(cnt.begin(), cnt.end(), [](int x) { return x == 0; });
  }
};
func isAnagram(s string, t string) bool {
  if len(s) != len(t) {
    return false
  }
  cnt := [26]int{}
  for i := 0; i < len(s); i++ {
    cnt[s[i]-'a']++
    cnt[t[i]-'a']--
  }
  for _, v := range cnt {
    if v != 0 {
      return false
    }
  }
  return true
}
function isAnagram(s: string, t: string): boolean {
  if (s.length !== t.length) {
    return false;
  }
  const cnt = new Array(26).fill(0);
  for (let i = 0; i < s.length; ++i) {
    ++cnt[s.charCodeAt(i) - 'a'.charCodeAt(0)];
    --cnt[t.charCodeAt(i) - 'a'.charCodeAt(0)];
  }
  return cnt.every(x => x === 0);
}
impl Solution {
  pub fn is_anagram(s: String, t: String) -> bool {
    let n = s.len();
    let m = t.len();
    if n != m {
      return false;
    }
    let mut s = s.chars().collect::<Vec<char>>();
    let mut t = t.chars().collect::<Vec<char>>();
    s.sort();
    t.sort();
    for i in 0..n {
      if s[i] != t[i] {
        return false;
      }
    }
    true
  }
}
/**
 * @param {string} s
 * @param {string} t
 * @return {boolean}
 */
var isAnagram = function (s, t) {
  if (s.length !== t.length) {
    return false;
  }
  const cnt = new Array(26).fill(0);
  for (let i = 0; i < s.length; ++i) {
    ++cnt[s.charCodeAt(i) - 'a'.charCodeAt(0)];
    --cnt[t.charCodeAt(i) - 'a'.charCodeAt(0)];
  }
  return cnt.every(x => x === 0);
};
public class Solution {
  public bool IsAnagram(string s, string t) {
    if (s.Length != t.Length) {
      return false;
    }
    int[] cnt = new int[26];
    for (int i = 0; i < s.Length; ++i) {
      ++cnt[s[i] - 'a'];
      --cnt[t[i] - 'a'];
    }
    return cnt.All(x => x == 0);
  }
}
int cmp(const void* a, const void* b) {
  return *(char*) a - *(char*) b;
}

bool isAnagram(char* s, char* t) {
  int n = strlen(s);
  int m = strlen(t);
  if (n != m) {
    return 0;
  }
  qsort(s, n, sizeof(char), cmp);
  qsort(t, n, sizeof(char), cmp);
  return !strcmp(s, t);
}

Solution 2

class Solution:
  def isAnagram(self, s: str, t: str) -> bool:
    return Counter(s) == Counter(t)
impl Solution {
  pub fn is_anagram(s: String, t: String) -> bool {
    let n = s.len();
    let m = t.len();
    if n != m {
      return false;
    }
    let (s, t) = (s.as_bytes(), t.as_bytes());
    let mut count = [0; 26];
    for i in 0..n {
      count[(s[i] - b'a') as usize] += 1;
      count[(t[i] - b'a') as usize] -= 1;
    }
    count.iter().all(|&c| c == 0)
  }
}
bool isAnagram(char* s, char* t) {
  int n = strlen(s);
  int m = strlen(t);
  if (n != m) {
    return 0;
  }
  int count[26] = {0};
  for (int i = 0; i < n; i++) {
    count[s[i] - 'a']++;
    count[t[i] - 'a']--;
  }
  for (int i = 0; i < 26; i++) {
    if (count[i]) {
      return 0;
    }
  }
  return 1;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文