`
hcx2013
  • 浏览: 88841 次
社区版块
存档分类
最新评论

Multiply Strings

 
阅读更多

Given two numbers represented as strings, return multiplication of the numbers as a string.

Note: The numbers can be arbitrarily large and are non-negative.

 

public class Solution {
    public String multiply(String num1, String num2) {
    	String st1 = new StringBuilder(num1).reverse().toString();
    	String st2 = new StringBuilder(num2).reverse().toString();
    	
    	int[] res = new int[st1.length()+st2.length()];
    	for (int i = 0; i < st1.length(); i++) {
    		for (int j = 0; j < st2.length(); j++) {
    			res[i+j] += (st1.charAt(i)-'0')*(st2.charAt(j)-'0');
    		}
    	}
    	StringBuilder sb = new StringBuilder();
    	for (int i = 0; i < res.length; i++) {
    		int digit = res[i]%10;
    		int carry = res[i]/10;
    		if (i+1 < res.length) {
    		    res[i+1] += carry;
    		}
    		sb.insert(0, digit);
    	}
    	while (sb.charAt(0)=='0' && sb.length()>1) {
    		sb.deleteCharAt(0);
    	}
    	return sb.toString();
    }
}

 

分享到:
评论

相关推荐

    java-leetcode题解之Multiply Strings.java

    java java_leetcode题解之Multiply Strings.java

    js-leetcode题解之43-multiply-strings.js

    js js_leetcode题解之43-multiply-strings.js

    C语言-leetcode题解之43-multiply-strings.c

    c语言入门 C语言_leetcode题解之43-multiply-strings.c

    python-leetcode面试题解之第43题字符串相乘-题解.zip

    在本压缩包中,主题聚焦于使用Python解决LeetCode第43题——“字符串相乘”(Multiply Strings)。这是一道常见的编程面试题,旨在测试应聘者的字符串处理和算法设计能力。下面将详细探讨该题目的背景、解题思路、...

    C语言入门-leetcode练习之第43题字符串相乘.zip

    第43题:字符串相乘(Multiply Strings) 题目描述: 给定两个非负整数num1和num2,它们的长度相同,用字符串形式表示。你的任务是计算它们的乘积,并返回结果字符串。例如,"2" 和 "3" 相乘等于 "6"。 解决方案:...

    Leetcode部分试题解析

    22. **Multiply Strings**:两个字符串表示的数相乘。同样模拟笔算乘法,使用二维数组存储中间结果。 23. **Rotate Array**:将数组顺时针旋转指定步数。可以先反转整个数组,再反转前半部分和后半部分。 24. **...

    LeetCode最全代码

    ...The number of questions is increasing recently. Here is the classification of all `468` questions. ...I'll keep updating for full summary and better solutions....|-----|---------------- | --------------- |...

    _leetcode-python.pdf

    - Multiply Strings: 给定两个非负整数字符串形式的数,要求进行乘法运算。 - Wildcard Matching: 实现支持'?'和'*'的通配符匹配。 - Jump Game / Jump Game II: 第一个问题要求判断是否能到达数组的最后一个位置,...

    leetcodepython001-LeetCode:力码

    Multiply Strings 066 Add Binary Linked-list 002 Add Two Numbers Stack 020 Valid Parenthesis Hash Table 001 TwoSum Reference 完整的学习流程 How to be a softwair engineer: 其他人详解 Python的各式演算法

    leetcode卡-LeetCode:LeetCode题解

    leetcode卡 LeetCode LeetCode题解 目录 字符串问题 ID Title C++ 难度 备注 0008 String to Integer(atoi) :star: :star: :star: ...Multiply Strings :star: :star: 大数相乘 0044 Wild Card Matchi

    week1-wednesday

    &lt;&lt;&lt;&lt;&lt;&lt;&lt; HEAD#周三9/16的概述 回顾昨天,去做功课 介绍数组 在课堂练习中(成对) ...//1....//2....//3.... Add, subtract, multiply and divide them. ... Add, subtract, multiply and divide the strings

    python常用函数.doc

    filtered_strings = list(filter(is_not_empty, strings)) print(filtered_strings) ``` 输出结果为:`['hello', 'world', 'Python']` 通过上述示例可以看出,`map()`、`reduce()` 和 `filter()` 这三个内置函数在...

    (完整版)python常用函数.pdf

    filtered_strings = filter(not_empty, strings) # 输出结果:['abc', 'def', 'ghi'] ``` 综上所述,`map()`, `reduce()`和`filter()`是Python中非常实用的高阶函数,它们简化了对列表数据的操作,提高了代码的...

    A.Collection.of.Bit.Programming.Interview.Questions.solved.in.C++

    Multiply two numbers without using arithmetic operators Chapter 13. Compute the two’s complement for a given integer Chapter 14. Isolate the rightmost bit set to 1 Chapter 15. Create a mask for ...

    Create Android Sample Application

    - `strings.xml`:用于定义界面上显示的文本字符串。 2. **设计用户界面**: - 在`main.xml`中定义应用的用户界面布局。 - 示例代码如下所示: ```xml android:orientation="vertical" android:layout_...

    Android 简单代码实现的Android 计算器源码.zip

    对于计算逻辑,源码可能包含了多个函数,如`add()`, `subtract()`, `multiply()`, `divide()`,分别对应加减乘除运算。 此外,Android应用的生命周期管理也是一个关键知识点。在这个计算器中,你需要了解如何在...

    java实验一 图形 字符串 复数

    - `multiply(Complex other)`:实现复数相乘 - `divide(Complex other)`:实现复数相除 - `toString()`:将复数格式化为字符串 #### 三、整数数组转字符串 编写一个方法,接受一个整数数组作为参数,然后将数组中...

Global site tag (gtag.js) - Google Analytics