为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

富国沪深 2022-09-22 16:13:31
您将获得两个非空链接列表,表示两个非负整数。数字以相反的顺序存储,其每个节点都包含一个数字。将这两个数字相加,并将其作为链接列表返回。您可以假定这两个数字不包含任何前导零,但数字 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 -> 8Explanation: 342 + 465 = 807.
查看完整描述

1 回答

?
当年话下

TA贡献1890条经验 获得超9个赞

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 + " ";


          }


}


查看完整回答
反对 回复 2022-09-22
  • 1 回答
  • 0 关注
  • 66 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信