{"id":119,"date":"2024-10-12T21:05:42","date_gmt":"2024-10-12T13:05:42","guid":{"rendered":"https:\/\/womeifei.cn\/?p=119"},"modified":"2024-10-12T21:05:42","modified_gmt":"2024-10-12T13:05:42","slug":"%e4%b8%a4%e6%95%b0%e7%9b%b8%e5%8a%a0","status":"publish","type":"post","link":"https:\/\/womeifei.cn\/index.php\/2024\/10\/12\/%e4%b8%a4%e6%95%b0%e7%9b%b8%e5%8a%a0\/","title":{"rendered":"\u4e24\u6570\u76f8\u52a0"},"content":{"rendered":"\n<p>\u8fd9\u4e2a\u7b97\u662f\u94fe\u8868\u5165\u95e8\u9898 \u70ed\u4e00\u4e0b\u8eab<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/womeifei.cn\/wp-content\/uploads\/2024\/10\/image-7.png'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"853\" height=\"672\" data-original=\"https:\/\/womeifei.cn\/wp-content\/uploads\/2024\/10\/image-7.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-120\"  sizes=\"auto, (max-width: 853px) 100vw, 853px\" \/><\/div><\/figure>\n\n\n\n<p>\u6709\u70b9\u50cf\u4e4b\u524d\u7684\u9ad8\u7cbe\u5ea6\u52a0\u6cd5\u4e86 \u4e3b\u8981\u662fC++\u771f\u7684\u5f88\u65b9\u4fbf\u54c8\u54c8\u54c8<\/p>\n\n\n\n<p>\u4e0d\u8fc7 STL \u57fa\u672c\u5fd8\u5149\u4e86 \u4e0d\u4f1a\u7528\u90a3\u73a9\u610f\u4e86<\/p>\n\n\n\n<p>\u601d\u8def\u633a\u7b80\u5355\u7684 \u4ece\u5934\u7ed3\u70b9\u5f00\u59cb \u52a0\u8d77\u6765\/10\u4e3a\u8fdb\u4f4d\u6570 %10\u4e3a\u65b0\u8282\u70b9\u7684\u503c<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>class Solution {\npublic:\n    ListNode* addTwoNumbers(ListNode* l1, ListNode* l2) {\n        ListNode *head = NULL, *tail = NULL;\n        int carry = 0;\n        while (l1 || l2) \n        {\n            int n1 = l1 ? l1->val: 0;\n            \/\/\u53ef\u80fd\u7b2c\u4e00\u4f4d\u662f0\n            int n2 = l2 ? l2->val: 0;\n            int sum = n1 + n2 + carry;\n            if (!head) {\n                head = tail = new ListNode(sum % 10);\n            } else {\n                tail->next = new ListNode(sum % 10);\n                tail = tail->next;\n            }\n            carry = sum \/ 10;\n            if (l1) {\n                l1 = l1->next;\n            }\n            if (l2) {\n                l2 = l2->next;\n            }\n        }\n        if (carry > 0) {\n            tail->next = new ListNode(carry);\n        }\n        return head;\n    }\n};<\/code><\/pre>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u8fd9\u4e2a\u7b97\u662f\u94fe\u8868\u5165\u95e8\u9898 \u70ed\u4e00\u4e0b\u8eab \u6709\u70b9\u50cf\u4e4b\u524d\u7684\u9ad8\u7cbe\u5ea6\u52a0\u6cd5\u4e86 \u4e3b\u8981\u662fC++\u771f\u7684\u5f88\u65b9\u4fbf\u54c8\u54c8\u54c8 \u4e0d\u8fc7 STL \u57fa\u672c\u5fd8\u5149\u4e86 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,7],"tags":[],"class_list":["post-119","post","type-post","status-publish","format-standard","hentry","category-4","category-7"],"_links":{"self":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts\/119","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/comments?post=119"}],"version-history":[{"count":1,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts\/119\/revisions"}],"predecessor-version":[{"id":122,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/posts\/119\/revisions\/122"}],"wp:attachment":[{"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/media?parent=119"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/categories?post=119"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/womeifei.cn\/index.php\/wp-json\/wp\/v2\/tags?post=119"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}