错位的梦寐

LeetCode刷题(python)—— 383、409、415

2019-12-11


344_ 赎金信

409_最长回文串

415_字符串相加

344. 赎金信

题目描述

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

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

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

canConstruct(“a”, “b”) -> false

canConstruct(“aa”, “ab”) -> false

canConstruct(“aa”, “aab”) -> true

方法一:collections 统计字符个数

解题思路: 统计两个字符串的char,进行减法操作,如果有剩余证明false。

import collections

class Solution:
    def canConstruct(self, ransomNote: str, magazine: str) -> bool:
        return not collections.Counter(ransomNote) - collections.Counter(magazine)

方法二:哈希表

解题思路 :

  1. 用哈希表存储magazine字符及个数

  2. 遍历ransomNote:

    2.1. 如果哈希表中有该字符并且字符计数大于零,说明仍能由magzine构成,此时对应的字符计数减一

    2.2. 否则,无法构成,返回False

时间复杂度: O(N) - N(遍历magazine) + 1(字典检索为O(1)) 空间复杂度: O(N)

class Solution2(object):
    def canConstruct(self, ransomNote: str, magazine: str) -> bool:
        magazine_dict = {}
        # 哈希表存储magazine字符及个数
        for c in magazine:
            if c in magazine_dict:
                magazine_dict[c] += 1
            else:
                magazine_dict[c] = 1

        for c in ransomNote:
            if c in magazine_dict and magazine_dict[c] > 0:
                magazine_dict[c] -= 1
            else:
                return False

        return True

409.最长回文串

题目描述

给定一个包含大写字母和小写字母的字符串,找到通过这些字母构造成的最长的回文串。

在构造过程中,请注意区分大小写。比如 “Aa” 不能当做一个回文字符串。

注意: 假设字符串的长度不会超过 1010。

示例 1:

输入:

“abccccdd”

输出:

7

解释:

我们可以构造的最长的回文串是”dccaccd”, 它的长度是 7。

方法一 :

# [s.count(i)%2 for i in set(s)] 统计字符串中 不能够参与组成回文字符串的的字符
# 的格式。-1 保留了中心处的一个


class Solution:
    def longestPalindrome(self, s: str) -> int:
        return len(s) -max(0,sum([s.count(i)%2 for i in set(s)])-1)

参考:子不语

方法二 :

import collections
class Solution:
    def longestPalindrome(self, s):
        ans = 0
        for v in collections.Counter(s).values():
            ans += v // 2 * 2
            if ans % 2 == 0 and v % 2 == 1:
                ans += 1
        return ans

415.字符串相加

题目描述

给定两个字符串形式的非负整数 num1 和num2 ,计算它们的和。

注意:

  1. num1 和num2 的长度都小于 5100.
  2. num1 和num2 都只包含数字 0-9.
  3. num1 和num2 都不包含任何前导零。
  4. 你不能使用任何內建 BigInteger 库, 也不能直接将输入的字符串转换为整数形式。

方法一:

解题思路

  • 算法流程: 设定 i,j 两指针分别指向 num1,num2 尾部,模拟人工加法;
    • 计算进位: 计算 carry = tmp // 10,代表当前位相加是否产生进位;
    • 添加当前位: 计算 tmp = n1 + n2 + carry,并将当前位 tmp % 10 添加至 res 头部;
    • 索引溢出处理: 当指针 i或j 走过数字首部后,给 n1,n2 赋值为 00,相当于给 num1,num2 中长度较短的数字前面填 00,以便后续计算。
    • 当遍历完 num1,num2 后跳出循环,并根据 carry 值决定是否在头部添加进位 11,最终返回 res 即可。
class Solution:
    def addStrings(self, num1: str, num2: str) -> str:
        res = " "
        i, j, carry = len(num1) - 1, len(num2) - 1, 0
        while i >= 0 or j >= 0:
            n1 = int(num1[i]) if i >= 0 else 0
            n2 = int(num2[j]) if j >= 0 else 0
            temp = n1 + n2 + carry
            carry = temp // 10
            res = str(temp % 10) + res
            i, j = i - 1, j - 1
        return '1' + res if carry else res

参考:字符串相加 (双指针,清晰图解)


Comments

Content