码迷,mamicode.com
首页 > 其他好文 > 详细

实现大整数相加

时间:2018-11-30 18:29:27      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:rev   uil   ever   style   bre   temp   ati   相加   +=   

static String bigNumberSum(String a,String b) {
        char[] charArrayA = new StringBuilder(a).reverse().toString().toCharArray();
        char[] charArrayB = new StringBuilder(b).reverse().toString().toCharArray();
        int length=charArrayA.length > charArrayB.length ? charArrayA.length : charArrayB.length;
        int[] result = new int[length +1];
        
        int temp=0;
        for(int i=0;i<result.length;i++) {
            temp=result[i];
            if(i < charArrayA.length) {
                temp+=charArrayA[i]-‘0‘;
            }
            if(i < charArrayB.length) {
                temp+=charArrayB[i]-‘0‘;
            }
            if(temp >= 10) {
                temp=temp-10;
                result[i+1]=1;
            }
            result[i]=temp;
        }
        StringBuilder sb=new StringBuilder();
        for(int i=0;i<result.length;i++) {
            if(i==length) {
                if(result[i]==0) {
                    break;
                }
            }
            sb.append(result[i]);
        }
        
        return sb.reverse().toString();
    }

 

实现大整数相加

标签:rev   uil   ever   style   bre   temp   ati   相加   +=   

原文地址:https://www.cnblogs.com/dongma/p/10045617.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!