博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
大数加法
阅读量:5319 次
发布时间:2019-06-14

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

#include 
#include
#include
#include
void reverse_str(char *pBegin, char *pEnd){ while(pBegin < pEnd){ char t = *pBegin; *pBegin = *pEnd; *pEnd = t; ++pBegin; --pEnd; } }bool add(const char *pA, const char *pB, char *pSum, int maxSumLen){ if(pA == NULL || pB == NULL || pSum == NULL || maxSumLen <= 0){ return false; } int lenA = strlen(pA); int lenB = strlen(pB); int k = 0; pSum[k] = 0; for(int i = lenA - 1, j = lenB - 1; (k <= maxSumLen - 2 && (i >= 0 || j >= 0)); i--, j--, k++){ int a = i >= 0 ? pA[i] - '0' : 0; int b = j >= 0 ? pB[j] - '0' : 0; pSum[k] += a + b; pSum[k + 1] = pSum[k] >= 10 ? pSum[k] / 10 : 0; pSum[k] = pSum[k] % 10 + '0'; } pSum[k] = '\0'; reverse_str(pSum, pSum + k - 1); return true;}int main(){ char strA[] = "123499999"; char strB[] = "223999999"; char strSum[10]; add(strA, strB, strSum, 10); printf("strA:%s, strB:%s, strSum:%s\n", strA, strB, strSum); printf("result:%d\n", atoi(strSum) == (atoi(strA) + atoi(strB))%1000000000); return 0;}

  

转载于:https://www.cnblogs.com/moxiaopeng/p/4897551.html

你可能感兴趣的文章
把word文档中的所有图片导出
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
zabbix监控日志文件
查看>>
正则表达式
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>
jenkins搭建
查看>>
C#中使用Split分隔字符串的技巧
查看>>
加固linux
查看>>
IPSP问题
查看>>
10.17动手动脑
查看>>
WPF中Image显示本地图片
查看>>