题解 | #链表相加(二)#

链表相加(二)

http://www.nowcoder.com/practice/c56f6c70fb3f4849bc56e33ff2a50b6b

链表 1 为 9->3->7,链表 2 为 6->3,最后生成新的结果链表为 1->0->0->0。

import java.util.LinkedList;
/*
思路:使用栈的思想,将两数相加之后,重新创建新的链表,进行头插
*/
public class Solution {
   public ListNode addInList (ListNode head1, ListNode head2) {
   //创建两个栈
        Deque<Integer> stack1 = new LinkedList<Integer>();
        Deque<Integer> stack2 = new LinkedList<Integer>();
        //分别入栈
        while(head1!=null){
            stack1.push(head1.val);
            head1=head1.next;
        }
        while (head2!=null){
            stack2.push(head2.val);
            head2=head2.next;
        }
        int sum = 0;
        //进位
        int carry =0;
        ListNode ans=null;
        
        while(!stack1.isEmpty()||!stack2.isEmpty()||carry>0){
        //判断是否为空,不为空,弹栈,为空取0;
            int num1 = stack1.isEmpty()?0:stack1.pop();
            int num2 = stack2.isEmpty()?0:stack2.pop();
            sum=num1+num2+carry;
            carry=sum/10;
            ListNode head = new ListNode(sum%10);
            //头插法
            head.next=ans;
            ans=head;
            
        }
        return ans;
    }
}
全部评论

相关推荐

点赞 评论 收藏
分享
10-09 00:50
已编辑
长江大学 算法工程师
不期而遇的夏天:1.同学你面试评价不错,概率很大,请耐心等待;2.你的排名比较靠前,不要担心,耐心等待;3.问题不大,正在审批,不要着急签其他公司,等等我们!4.预计9月中下旬,安心过节;5.下周会有结果,请耐心等待下;6.可能国庆节前后,一有结果我马上通知你;7.预计10月中旬,再坚持一下;8.正在走流程,就这两天了;9.同学,结果我也不知道,你如果查到了也告诉我一声;10.同学你出线不明朗,建议签其他公司保底!11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务