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

[LintCode] Compare Strings

时间:2015-01-14 18:11:48      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:interview

http://lintcode.com/en/problem/compare-strings/

public class Solution {
    /**
     * @param A : A string includes Upper Case letters
     * @param B : A string includes Upper Case letter
     * @return :  if string A contains all of the characters in B return true else return false
     */
    public boolean compareStrings(String A, String B) {
        // write your code here
        
        if (A == null || B == null)
            return false;
        
        Map<Character, Integer> map = new HashMap<>();
        for (char c : A.toCharArray())
        {
            Integer occurance = map.get(c);
            if (occurance == null)
                occurance = 0;
            occurance++;
            map.put(c, occurance);
        }
        
        for (char c : B.toCharArray())
        {
            Integer occurance = map.get(c);
            if (occurance == null || occurance == 0)
                return false;
            occurance--;
            map.put(c, occurance);
        }
        
        return true;
    }
}


[LintCode] Compare Strings

标签:interview

原文地址:http://7371901.blog.51cto.com/7361901/1603953

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