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

链表相加(二)

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

import java.util.*;

/*
 * public class ListNode {
 *   int val;
 *   ListNode next = null;
 * }
 */

public class Solution {
    /**
     * 
     * @param head1 ListNode类 
     * @param head2 ListNode类 
     * @return ListNode类
     */
    public ListNode addInList (ListNode head1, ListNode head2) {
        if(head1 == null) return head2 ;
        if(head2 == null) return head1 ;
        //利用辅助栈来保存原链表的元素数值
        Stack<Integer> s1 = new Stack<>() ;
        Stack<Integer> s2 = new Stack<>() ;
        ListNode l1 = head1 ;
        ListNode l2 = head2 ;
        while(l1 != null) {
            s1.push(l1.val) ;
            l1 = l1.next ;
        }
        while(l2 != null) {
            s2.push(l2.val) ;
            l2 = l2.next ;
        }
        //开始相加
        ListNode pre = new ListNode(-1) ;
        ListNode cur = pre ;
        int jw = 0 ;//进位
        int bl = 0 ;//保留位
        while(!s1.isEmpty() && ! s2.isEmpty()) {
            bl = s1.pop() + s2.pop() + jw ;
            if(bl < 10) {
                jw = 0 ;
            } else {
                jw = 1 ;
                bl -= 10 ;
            }
            cur.next = new ListNode(bl) ;
            cur = cur.next ;
        }
        while(!s1.isEmpty()) {
            bl = s1.pop() + jw ;
            if(bl < 10) {
                jw = 0 ;
            } else {
                jw = 1 ;
                bl -= 10 ;
            }
            cur.next = new ListNode(bl) ;
            cur = cur.next ;
        }
        while(!s2.isEmpty()) {
            bl = s2.pop() + jw ;
            if(bl < 10) {
                jw = 0 ;
            } else {
                jw = 1 ;
                bl -= 10 ;
            }
            cur.next = new ListNode(bl) ;
            cur = cur.next ;
        }
        if(jw > 0) {
            cur.next = new ListNode(jw) ;
        }
        return reverseListNode(pre.next) ;
    }
    
    //翻转链表
    public ListNode reverseListNode(ListNode l) {
        if(l == null || l.next == null) return l ;
        ListNode pre = null ;
        ListNode cur = l ;
        ListNode nxt = null ;
        while(cur != null) {
            nxt = cur.next ;
            cur.next = pre ;
            pre = cur ;
            cur = nxt ;
        }
        return pre ;
    }
}

一个菜鸟的算法刷题记录 文章被收录于专栏

分享一个菜鸟的成长记录

全部评论

相关推荐

昨天 14:22
门头沟学院 Java
大厂 测开 24*16离家近的事业编(大概只有大厂的1/4) 硕士
点赞 评论 收藏
分享
点赞 评论 收藏
分享
Yushuu:你的确很厉害,但是有一个小问题:谁问你了?我的意思是,谁在意?我告诉你,根本没人问你,在我们之中0人问了你,我把所有问你的人都请来 party 了,到场人数是0个人,誰问你了?WHO ASKED?谁问汝矣?誰があなたに聞きましたか?누가 물어봤어?我爬上了珠穆朗玛峰也没找到谁问你了,我刚刚潜入了世界上最大的射电望远镜也没开到那个问你的人的盒,在找到谁问你之前我连癌症的解药都发明了出来,我开了最大距离渲染也没找到谁问你了我活在这个被辐射蹂躏了多年的破碎世界的坟墓里目睹全球核战争把人类文明毁灭也没见到谁问你了😆
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务