Leetcode242_valid Anagram (determines whether two strings are composed of exactly the same characters) Java

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.

Exercises

A hash table is used to record each character and the number of occurrences of one of the strings. Use the character of another string as key to get the value to determine if it exists.

public static Boolean Isanagram (string s, String t) {   if (s.length ()!=t.length ())   return false;      Char[] Array=s.tochararray ();   Hashmap<character, integer> hashmap=new hashmap<> ();   for (int i=0;i<array.length;i++)   {   if (Hashmap.get (Array[i]) ==null)   {   hashmap.put (array[i], 1);   }   else {int temp=hashmap.get (array[i]); Hashmap.put (Array[i], temp+1);}   }      for (int k=0;k<s.length (); k++)   {   char stemp=t.charat (k);   if (Hashmap.get (stemp)!=null)   {   int value=hashmap.get (stemp);   if (value>=1)   {   hashmap.put (stemp, value-1);   }   else {return false;}   }   else {return false;}   }   return true;    }}


Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Leetcode242_valid Anagram (determines whether two strings are composed of exactly the same characters) Java

Related Article

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.