关关的刷题日记 41 – Leetcode 383. Ransom Note

关关的刷题日记41 – Leetcode 383. Ransom Note

题目

Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the ransom note can be constructed from the magazines ; otherwise, it will return false.

Each letter in the magazine string can only be used once in your ransom note.

Note: You may assume that both strings contain only lowercase letters.

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

题目的意思是判断ransom的词能否由magazine中的字符构成,magazine中每个字符只能使用一次。

思路

思路:这题很简单,之前也做过好多类似的了,可以参考刷题日记36 – Leetcode 242. Valid Anagram的做法。

自加自减运算符拓展: 一开始把11、12行写成了一行,写成if(--count[x-'a']<0),就过了; 写成if(count[x-'a']--<0),或者if( (count[x-'a']--) <0)答案都是错误的,想到自加自减运算符的优先级是比大于小于高的,所以困惑不解,问了一下师父:a--是在句子结束之后触发减1,什么叫句子结束呢,也就是第一个分号结束之后;--a是在执行到它的时候减1。 反正任何时候,只要可以,尽量用++a,不要用a++,因为a++的代价要大很多,for循环的时候要格外注意!!! 这里面的原理还比较复杂,所以我想着为了避免掉坑了,以后大家不如像我粘贴上来的代码那样,分开写就好了。

人生易老,唯有陪伴最长情,加油!

以上就是关关关于这道题的总结经验,希望大家能够理解,有什么问题可以在我们的专知公众号平台上交流或者加我们的QQ专知-人工智能交流群 426491390,也可以加入专知——Leetcode刷题交流群(请先加微信小助手weixinhao: Rancho_Fang)。 同时请,关注我们的公众号,获取最新关于专知以及人工智能的资讯、技术、算法等内容。扫一扫下方关注我们的微信公众号。

图片

展开全文
相关主题
Top
微信扫码咨询专知VIP会员