383-赎金信

赎金信

题目

给定一个赎金信 (ransom) 字符串和一个杂志(magazine)字符串,判断第一个字符串ransom能不能由第二个字符串magazines里面的字符构成。如果可以构成,返回 true ;否则返回 false。

(题目说明:为了不暴露赎金信字迹,要从杂志上搜索各个需要的字母,组成单词来表达意思。)

注意:

你可以假设两个字符串均只含有小写字母。

canConstruct("a", "b") -> false
canConstruct("aa", "ab") -> false
canConstruct("aa", "aab") -> true

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/ransom-note
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

思路

  • 最简单的思路是使用map暂存所有的magazine中的字符,然后遍历ransom来对比
  • 改进可以使用数组存即可.将字符与固定字符比较即可确定每个字符的位置.

因为不需要使用map中的contains功能,所以会快很多.同时内存占用会相对减少

代码

  • 使用map存取
class Solution {
    public boolean canConstruct(String ransomNote, String magazine) {
        //由第二个字符串来看,因此可以将第二个字符串存入map中,然后根据数目来
        if(ransomNote.length()>magazine.length()){
            return false;
        }
        Map map = new HashMap<>();
        for(int i = 0 ;i < magazine.length();i++){
            if(map.containsKey(magazine.charAt(i))){
                map.put(magazine.charAt(i),map.get(magazine.charAt(i))+1);
            }else{
                map.put(magazine.charAt(i),1);
            }
        }
        for(int i = 0;i < ransomNote.length();i++){
            Integer num = map.get(ransomNote.charAt(i));
            if (num == null || num <= 0){
                return false;
            }else{
                map.put(ransomNote.charAt(i),--num);
            }
        }
        return true;
    }
}
  • 使用数组存取
class Solution {
    public boolean canConstruct(String ransomNote, String magazine) {
        if(ransomNote.length()>magazine.length()){
            return false;
        }
        int[] temp = new int[26];
        for(int i = 0;i < magazine.length();i++){
            temp[magazine.charAt(i)-'a']++;
        }
        for(int i = 0;i < ransomNote.length();i++){
            if(temp[ransomNote.charAt(i)-'a'] == 0){
                return false;
            }else{
                temp[ransomNote.charAt(i)-'a']--;
            }
        }
        return true;
    }
}

你可能感兴趣的:(383-赎金信)