博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode-Multiply Strings
阅读量:5249 次
发布时间:2019-06-14

本文共 1041 字,大约阅读时间需要 3 分钟。

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.

class Solution {public:    void Plus(string& a,string& b,string& temp){        int small=min(a.length(),b.length());        bool flag=false;        int i=0;        for(;i
'9'){ temp[i]-=10; flag=true; } else{ flag=false; } } while(i
'9'){ temp[i]-=10; flag=true; } else{ flag=false; } i++; } while(i
'9'){ temp[i]-=10; flag=true; } else{ flag=false; } i++; } if(flag){ temp[i]='1'; i++; } a.resize(i); for(int j=0;j
View Code

 

转载于:https://www.cnblogs.com/superzrx/p/3352921.html

你可能感兴趣的文章
Yii2 中使用ts
查看>>
vagrant laravel.log文件不能打开
查看>>
try install gitlab ce at docker ce
查看>>
centos lamp笔记
查看>>
ssl checker
查看>>
Yii2 使用 npm 安装的包
查看>>
laravel 优化小记
查看>>
PHP 添加 跨域头
查看>>
centos httpd 重啓顯示 `httpd: apr_sockaddr_info_get() failed for`
查看>>
yii2 vendor/bower/jquery/dist not exist
查看>>
Anguarjs http 会先发送一次 Options 请求,
查看>>
cordova 插件发布到 npm
查看>>
学习 Apache FileMatchs 规则
查看>>
linux 将子文件夹的文件复制到 当前目录中
查看>>
新知道一个 端对端加密 Signal protocol
查看>>
Docker的镜像 导出导入
查看>>
wordpress 获取所有管理员的邮箱
查看>>
学习mysql水平分区和实践笔记
查看>>
Laravel Illuminate\Http\Exceptions\PostTooLargeException
查看>>
SQLSTATE[HY000]: General error: 1366 Incorrect string value
查看>>