Leetcode Title: Valid Anagram

Source: Internet
Author: User

Topic:

Given, Strings s and T, write a function to determine if it is a anagram of s.

For example,
s = "Anagram", t = "Nagaram", return true.
s = "Rat", t = "Car", return false.

Note:
Assume the string contains only lowercase alphabets

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

Solution Ideas:

Set a full array of size 26 to record the number of occurrences of each letter in the string s, and to determine if the number of occurrences of each letter in the T string is the same as, if the same, the description constitutes a modified word.

The code is as follows:

Class Solution {
Public
BOOL Isanagram (string s, String t) {
int s_size = S.length ();
int t_size = T.length ();
if (s_size! = t_size)
{
return false;
}
if (s_size = = 0)
return true;
Char s_copy[s_size + 1];
Char t_copy[t_size + 1];
strncpy (S_copy,s.c_str (), s_size);
strncpy (T_copy,t.c_str (), t_size);
int num[26]={0};
for (int i = 0;i < s_size;i++)
{
num[s_copy[i]-' a ']++;
}
for (int i = 0;i < t_size;i++)
{
num[t_copy[i]-' a ']--;
if (num[t_copy[i]-' a '] < 0)
return false;
}
for (int i = 0;i < 26;i++)
{
if (num[i]! = 0)
return false;
}
return true;
}
};

Leetcode Title: Valid Anagram

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.