leetcode 383. 赎金信
给定一个赎金信 (ransom) 字符串和一个杂志(magazine)字符串,判断第一个字符串 ransom 能不能由第二个字符串 magazines 里面的字符构成。如果可以构成,返回 true ;否则返回 false。
(题目说明:为了不暴露赎金信字迹,要从杂志上搜索各个需要的字母,组成单词来表达意思。杂志字符串中的每个字符只能在赎金信字符串中使用一次。)
示例 1:
输入:ransomNote = "a", magazine = "b"
输出:false
示例 2:
输入:ransomNote = "aa", magazine = "ab"
输出:false
示例 3:
输入:ransomNote = "aa", magazine = "aab"
输出:true
提示:
你可以假设两个字符串均只含有小写字母。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/ransom-note
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
采用数组记录magazine中字符出现的次数, 遍历ransomNote,若存在,则对应的次数-1,直到变为0。
public boolean canConstruct(String ransomNote, String magazine) { if (ransomNote == null || ransomNote.length() == 0) { return true; } if (magazine == null || magazine.length() == 0) { return false; } int a = ransomNote.length(); int b = magazine.length(); if (a > b) { return false; } int[] arr = new int[26]; for (int i = 0; i < b; i++) { arr[magazine.charAt(i) - 97] += 1; } for (int i = 0; i < a; i++) { int index = ransomNote.charAt(i) - 97; int count = arr[index]; if (count == 0) { return false; } arr[index] -= 1; } return true; }
时间和空间都中等。