zoukankan      html  css  js  c++  java
  • 43. Multiply Strings 字符串相乘

    Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2.

    Note:

    1. The length of both num1 and num2 is < 110.

    2. Both num1 and num2 contains only digits 0-9.

    3. Both num1 and num2 does not contain any leading zero.

    4. You must not use any built-in BigInteger library or convert the inputs to integer directly


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    class Solution1:
        def multiply(self, num1, num2):
            """
            :type num1: str
            :type num2: str
            :rtype: str
            """
            if num1 is "0" or num2 is "0":
                return "0"
            pos = [[] for i in range(len(num1) + len(num2))]
            startIndex = 0
            for i in range(len(num2) - 1, -1, -1):
                curStartIndex = 0
                for j in range(len(num1) - 1, -1, -1):
                    cur = str(int(num2[i]) * int(num1[j]))
                    curIndex = 0
                    for k in range(len(cur) - 1, -1, -1):
                        pos[startIndex + curStartIndex + curIndex].append(cur[k])
                        curIndex += 1
                    curStartIndex += 1
                startIndex += 1
     
            res = ""
            carry = 0
            index = 0
            while index < len(pos) or carry:
                val = carry
                for cur in pos[index]:
                    val += int(cur)
                carry = int(val / 10)
                res = str(val % 10) + res
                index += 1
            return res.lstrip("0")
     
     
    class Solution2:
        def multiply(self, num1, num2):
            res = 0
            for i in range(len(num1)):
                res *= 10
                n = int(num1[i])
                temp_n = 0
                for j in range(len(num2)):
                    temp_n *= 10
                    temp_n += int(num2[j]) * n
                res += temp_n
            return str(res)
     
     
    s = Solution1()
    num1 = "999"
    num2 = "999"
    res = s.multiply(num1, num2)
    print(res)






  • 相关阅读:
    V2热帖:要多健壮的代码才能支撑起千变万化的需求?
    jmeter生成html报告的命令
    jmeter5.x&4.x搭配使用Serveragent 监听服务端性能参数
    springboot关于tomcat的几个默认配置
    nginx日志统计分析-shell
    OpenStack虚拟机VIP配置步骤
    openstack 3.14.3 虚拟机增加指定IP网卡
    OpenStack各组件的常用命令
    Filebeat的Registry文件解读
    一个shell脚本的实践
  • 原文地址:https://www.cnblogs.com/xiejunzhao/p/8445796.html
Copyright © 2011-2022 走看看