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

本文共 1003 字,大约阅读时间需要 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.

 

 大数的乘法问题,运用乘法规则就好了。
1 class Solution { 2 public: 3     string multiply(string num1, string num2) { 4         if(num1=="0" || num2=="0") return "0"; 5         string result; 6         int len1=num1.length(); 7         int len2=num2.length(); 8         int len=len1+len2; 9         int* n1=new int[len1];10         int* n2=new int[len2];11         int* multi=new int[len];12         for(int i=0;i
=0;i--)39 {40 if(multi[i]!=0)41 {42 first_nozero=i;43 break;44 }45 }46 for(int i=first_nozero;i>=0;i--)47 {48 result+=char(multi[i]+'0');49 }50 delete []n1;51 delete []n2;52 delete []multi;53 54 return result;55 }56 };

 

转载于:https://www.cnblogs.com/Sean-le/p/4734934.html

你可能感兴趣的文章
使用Swoole加速Laravel(正式环境中)
查看>>
mockjs让前端开发独立于后端
查看>>
延迟脚本的方式
查看>>
1.4linux单用户模式下修改root密码和救援模式修改root密码
查看>>
微服务架构优缺点
查看>>
解读userenv的日志
查看>>
跨进程通信之Messenger
查看>>
ext3与ext4区别
查看>>
DHCP Snooping + Dynamic ARP Inspection(DAI) 配置
查看>>
使用应答文件安装域控制器
查看>>
UNIX/Linux 系统管理技术手册阅读(三)
查看>>
btrfs的使用(案例讲解)
查看>>
分布式事务-二阶段提交与三阶段提交
查看>>
安装配置samba服务器和客户端
查看>>
filebeat 配置文件详解
查看>>
Swift与OC混编
查看>>
CentOS 5 (64位)下lnmp平台搭建
查看>>
redhat 6.5 配置WAS控制台中文
查看>>
mysql实现vsftp虚拟用户访问
查看>>
记录一次处理https监听不正确的过程
查看>>