关于从Leetcode算法部分添加两个数字(要求几行解释)

您将获得两个非空链接列表,表示两个非负整数。数字以相反的顺序存储,其每个节点都包含一个数字。将这两个数字相加,并将其作为链接列表返回。


您可以假定这两个数字不包含任何前导零,但数字 0 本身除外。


我不明白(公共列表节点添加两个数字(列表节点l1,列表节点l2))为什么它给出了两个名字,我想知道。谢谢


     /**

     * Definition for singly-linked list.

     * public class ListNode {

     *     int val;

     *     ListNode next;

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

     * }

     */

    class Solution {

        public ListNode addTwoNumbers(ListNode l1, ListNode l2) {

        ListNode dummyHead = new ListNode(0);

        ListNode p = l1, q = l2, curr = dummyHead;


        int carry = 0;

        while (p != null || q != null) {

            int x = (p != null) ? p.val : 0;

            int y = (q != null) ? q.val : 0;

            int sum = carry + x + y;

            carry = sum / 10;

            curr.next = new ListNode(sum % 10);

            curr = curr.next;

            if (p != null) p = p.next;

            if (q != null) q = q.next;

        }

        if (carry > 0) {

            curr.next = new ListNode(carry);

        }

        return dummyHead.next;

    }


    }


Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)

Output: 7 -> 0 -> 8

Explanation: 342 + 465 = 807.


富国沪深
浏览 67回答 1
1回答

当年话下

public class Solution {    /**     * Definition for singly-linked list.     * public class ListNode {     *     int val;     *     ListNode next;     *     ListNode(int x) { val = x; }     * }     */        public ListNode addTwoNumbers(ListNode l1, ListNode l2) {            ListNode dummyHead = new ListNode(0);            ListNode p = l1, q = l2, curr = dummyHead;            int carry = 0;            while (p != null || q != null) {                int x = (p != null) ? p.val : 0;                int y = (q != null) ? q.val : 0;                int sum = carry + x + y;                carry = sum / 10;                curr.next = new ListNode(sum % 10);                curr = curr.next;                if (p != null) p = p.next;                if (q != null) q = q.next;            }            if (carry > 0) {                curr.next = new ListNode(carry);            }            return dummyHead.next;        }    public static void main(String[] args) {            Solution solution = new Solution();        ListNode l1 = new ListNode(2);        ListNode nextl11 = new ListNode(4);        ListNode nextl12 = new ListNode(3);        l1.next = nextl11;        nextl11.next = nextl12;        ListNode l2 = new ListNode(5);        ListNode nextl21 = new ListNode(6);        ListNode nextl22 = new ListNode(4);        l2.next = nextl21;        nextl21.next = nextl22;        System.out.println(solution.addTwoNumbers(l1, l2));    }    }public class ListNode {          int val;          ListNode next;          ListNode(int x) { val = x; }          public String toString() {              if (next != null)              return "" + val + " " + next.toString();              else                  return "" + val + " ";          }}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java