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

lintcode

时间:2017-02-21 22:01:41      阅读:318      评论:0      收藏:0      [点我收藏+]

标签:ext   hash   turn   blog   second   substring   ring   put   log   

public class Solution {
    /**
     * @param s: The first string
     * @param b: The second string
     * @return true or false
     */
    public boolean anagram(String s, String t) {
        // write your code here
        Map<String , Integer> sMap = new HashMap<String , Integer>();
        Map<String , Integer> tMap = new HashMap<String , Integer>();
        
        if(s.length() != t.length()){
            return false;
        }
        
        int i=0;
        int wCount=0;
        while(i<s.length()){
            if(sMap.containsKey(s.substring(i,i+1))){
                wCount=sMap.get(s.substring(i,i+1)).intValue();
                wCount++;
                sMap.put(s.substring(i,i+1) , new Integer(wCount));
            }
            else{
                
                sMap.put(s.substring(i,i+1) , new Integer(1));
            }
            i++;
        }
        
        
        i=0;
        while(i<t.length()){
            if(tMap.containsKey(t.substring(i,i+1))){
                wCount=tMap.get(t.substring(i,i+1)).intValue();
                wCount++;
                tMap.put(t.substring(i,i+1) , new Integer(wCount));
            }
            else{
                
                tMap.put(t.substring(i,i+1) , new Integer(1));
            }
            i++;
        }
        
        
        Set sEntrySet = sMap.entrySet();
        Iterator sIterator = sEntrySet.iterator();
        
        while(sIterator.hasNext()){
            Map.Entry pair = (Map.Entry)sIterator.next();
            if(! tMap.containsKey(pair.getKey()) ){
                return false;
            }else{
                if(((Integer)tMap.get(pair.getKey())).intValue() != ((Integer)(pair.getValue())).intValue()){
                    return false;
                }
            }
            
        }
        
        return true;
        
    }
}

 

lintcode

标签:ext   hash   turn   blog   second   substring   ring   put   log   

原文地址:http://www.cnblogs.com/youge-OneSQL/p/6426068.html

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