码迷,mamicode.com
首页 > 其他好文 > 详细

[leedcode 242] Valid Anagram

时间:2015-08-09 01:42:40      阅读:206      评论:0      收藏: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.

Note:
You may assume the string contains only lowercase alphabets.

public class Solution {
    public boolean isAnagram(String s, String t) {
        //因为是26个字母,因此可以借助size为26的数组进行计算,下标代表字母,值为个数
        //注意遍历第二个string时,返回false的技巧!!
        int c[]=new int[26];
        int lens=s.length();
        int lent=t.length();
        if(lens!=lent) return false;
        for(int i=0;i<lens;i++){
            c[s.charAt(i)-‘a‘]++;
        }
        for(int j=0;j<lent;j++){
            if(c[t.charAt(j)-‘a‘]==0)return false;
            c[t.charAt(j)-‘a‘]--;
        }
        return true;
    }
}

 

[leedcode 242] Valid Anagram

标签:

原文地址:http://www.cnblogs.com/qiaomu/p/4714279.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!