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