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

链表相加(二)

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

using System;
using System.Collections.Generic;

/*
public class ListNode
{
    public int val;
    public ListNode next;

    public ListNode (int x)
    {
        val = x;
    }
}
*/

class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param head1 ListNode类
     * @param head2 ListNode类
     * @return ListNode类
     */
    public ListNode addInList (ListNode head1, ListNode head2) {

        ListNode l1 = ReverseList(head1);
        ListNode l2 = ReverseList(head2);
        ListNode l3 = new ListNode(0);
        ListNode p3 = l3;
        int curx = 0;
        while(l1 != null || l2 != null){
            if(l1 != null){
                curx += l1.val;
                l1 = l1.next;
            }
            if(l2 != null){
                curx += l2.val;
                l2 = l2.next;
            }
            p3.next = new ListNode(curx % 10);
            curx = curx / 10;
            p3 = p3.next;
        }
        if(curx != 0) p3.next = new ListNode(curx % 10);
        return ReverseList(l3.next);
    }

    public ListNode ReverseList(ListNode head) {
        ListNode slow = null;
        ListNode fast = head;
        ListNode nex;
        while(fast != null){
            nex = fast.next;
            fast.next = slow;
            slow = fast;
            fast = nex;
        }
        return slow;
    }
}

全部评论

相关推荐

11-01 08:48
门头沟学院 C++
伤心的候选人在吵架:佬你不要的,能不能拿户口本证明过户给我。。球球了
点赞 评论 收藏
分享
已老实求offer😫:有点像徐坤(没有冒犯的意思哈)
点赞 评论 收藏
分享
美团 后端开发 总包n(15%是股票)
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务