"Leetcode" 242. Valid Anagram

Source: Internet
Author: User

Title:

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.

Tips:

Notice in the title that the two characters in the input string are lowercase, so we can create a dictionary (array) of size 26, where the corresponding relationship is {0:a, 1:b, ..., 25:z}. Use it to save the number of occurrences of each letter.

For S, the corresponding number +1, and for T, will correspond to the number-1. Finally, if all the elements of the dictionary are zero, the number of occurrences of each character is consistent.

Code:
classSolution { Public:    BOOLIsanagram (stringSstringt) {if(S.size ()! = T.size ())return false; intdic[ -] = {0};  for(inti =0; I < s.size (); ++i) {dic[s[i]-'a']++; }         for(inti =0; I < t.size (); ++i) {Dic[t[i]-'a']--; }         for(inti =0; I < -; ++i) {if(Dic[i]! =0)return false; }        return true; }};

"Leetcode" 242. 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.