当前位置: 代码迷 >> 综合 >> [Leetcode]Valid Anagram
  详细解决方案

[Leetcode]Valid Anagram

热度:75   发布时间:2023-12-22 08:11:57.0

Given two strings s and t, write a function to determine if t is an anagram of s.

For example,
s = "anagram", t = "nagaram", return true.

s = "rat", t = "car", return false.

从题目看来,得到要求:

1. 长度相同

2. 相同的字母出现次数

一:结合之前做的,采用HASH的方式比较方便,将所有字母出现的次数记录在一个表中,比较两个表是否相同:

bool isAnagram(char* s, char* t) {char buff
  相关解决方案