国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

每日一則 LeetCode: Add Two Numbers

hightopo / 2693人閱讀

摘要:描述中文解釋給定兩個非空的鏈表里面分別包含不等數量的正整數,每一個節點都包含一個正整數,肯能是,但是不會是這種情況。我們需要按照倒序計算他們的和然后再次倒序輸出。

描述

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.

You may assume the two numbers do not contain any leading zero, except the number 0 itself.

</>復制代碼

  1. Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
  2. Output: 7 -> 0 -> 8
  3. Explanation: 342 + 465 = 807.
中文解釋

給定兩個非空的鏈表里面分別包含不等數量的正整數,每一個節點都包含一個正整數,肯能是0,但是不會是01這種情況。我們需要按照倒序計算他們的和然后再次倒序輸出。

解題思路

這題沒有什么巧妙的方式,不過仔細思考一下,它其實是在模擬正常的多位數加法。我們試想在計算多位數加法的時候,從最末位開始計算,如果大于10就進位,并加到下次高位計算中;如果不大于10繼續計算;就這樣我們就有了下面的階梯思路。
一次循環就可以搞定,通過判斷他們其中是不是空,就像是多位數加減法,如果一個高位沒有了,當然也要繼續計算,所以有了下面默認 int carry = 0,然后通過 sum / 10 算出進位,通過 sum % 10 算出當前位,這個題就迎刃而解。

源碼

</>復制代碼

  1. public class AddTwoNumbers {
  2. public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
  3. ListNode tempNode = new ListNode(0);
  4. ListNode a = l1, b = l2, curr = tempNode;
  5. int carry = 0;
  6. while (a != null || b != null) {
  7. int x = a != null ? a.val : 0;
  8. int y = b != null ? b.val : 0;
  9. int sum = carry + x + y;
  10. carry = sum / 10;
  11. curr.next = new ListNode(sum % 10);
  12. curr = curr.next;
  13. if (a != null) a = a.next;
  14. if (b != null) b = b.next;
  15. }
  16. if (carry > 0) {
  17. curr.next = new ListNode(carry);
  18. }
  19. return tempNode.next;
  20. }
  21. public static void main(String[] args) {
  22. ListNode l1 = new ListNode(2);
  23. l1.add(new ListNode(4));
  24. l1.add(new ListNode(3));
  25. ListNode l2 = new ListNode(5);
  26. l2.add(new ListNode(6));
  27. l2.add(new ListNode(4));
  28. ListNode listNode = new AddTwoNumbers().addTwoNumbers(l1, l2);
  29. System.out.println(listNode.val);
  30. while (listNode.next != null) {
  31. System.out.println(listNode.next.val);
  32. listNode = listNode.next;
  33. }
  34. }
  35. }
  36. class ListNode {
  37. int val;
  38. ListNode next;
  39. ListNode(int x) {
  40. val = x;
  41. }
  42. public void add(ListNode next) {
  43. ListNode last = getLast(this);
  44. last.next = next;
  45. }
  46. private ListNode getLast(ListNode next) {
  47. while (next.next != null) {
  48. return getLast(next.next);
  49. }
  50. return next;
  51. }
  52. }
原題地址

https://leetcode.com/problems...

作者

本文作者麻醬,歡迎討論,指正和轉載,轉載請注明出處。
如果興趣可以關注作者微信訂閱號:碼匠筆記

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/69348.html

相關文章

  • Leetcode 2 Add Two Numbers 兩數相加

    摘要:這題是說給出兩個鏈表每個鏈表代表一個多位整數個位在前比如代表著求這兩個鏈表代表的整數之和同樣以倒序的鏈表表示難度這個題目就是模擬人手算加法的過程需要記錄進位每次把對應位置兩個節點如果一個走到頭了就只算其中一個的值加上進位值 Add Two Numbers You are given two linked lists representing two non-negative num...

    Charlie_Jade 評論0 收藏0
  • [LeetCode] 445. Add Two Numbers II

    Problem You are given two non-empty linked lists representing two non-negative integers. The most significant digit comes first and each of their nodes contain a single digit. Add the two numbers and ...

    alexnevsky 評論0 收藏0
  • leetcode 2 Add Two Numbers

    摘要:我們的目的是求出兩個數字的加和,并以同樣的形式返回。假設每個都不會存在在首位的,除非數字本身就是想法這道題主要要求還是熟悉的操作。這道題由于數字反序,所以實際上從首位開始相加正好符合我們筆算的時候的順序。 題目詳情 You are given two non-empty linked lists representing two non-negative integers. The d...

    Integ 評論0 收藏0
  • leetcode445. Add Two Numbers II

    摘要:題目要求對以鏈表形式的兩個整數進行累加計算。思路一鏈表轉置鏈表形式跟非鏈表形式的最大區別在于我們無法根據下標來訪問對應下標的元素。因此這里通過先將鏈表轉置,再從左往右對每一位求和來進行累加。通過棧可以實現先進后出,即讀取順序的轉置。 題目要求 You are given two non-empty linked lists representing two non-negative i...

    DoINsiSt 評論0 收藏0
  • LeetCode 2:兩數相加 Add Two Numbers

    摘要:給出兩個非空的鏈表用來表示兩個非負的整數。如果,我們將這兩個數相加起來,則會返回一個新的鏈表來表示它們的和。需要考慮到兩個鏈表長度不同時遍歷方式鏈表遍歷完成時最后一位是否需要進一位。 ?給出兩個 非空 的鏈表用來表示兩個非負的整數。其中,它們各自的位數是按照 逆序 的方式存儲的,并且它們的每個節點只能存儲 一位 數字。如果,我們將這兩個數相加起來,則會返回一個新的鏈表來表示它們的和。 ...

    diabloneo 評論0 收藏0

發表評論

0條評論

hightopo

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<