• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            Uriel's Corner

            Research Associate @ Harvard University / Research Interests: Computer Vision, Biomedical Image Analysis, Machine Learning
            posts - 0, comments - 50, trackbacks - 0, articles - 594
            統計單鏈表前后對應位置的和,輸出最大的和
            先用快慢兩個指針,快指針每次前進兩個node,這樣定位到單鏈表中心位置,然后翻轉后一半鏈表的指針(很巧妙,思路參考Discussion)


             1 #2130
             2 #Runtime: 1108 ms (Beats 78.1%)
             3 #Memory: 72.2 MB (Beats 80.63%)
             4 
             5 # Definition for singly-linked list.
             6 # class ListNode(object):
             7 #     def __init__(self, val=0, next=None):
             8 #         self.val = val
             9 #         self.next = next
            10 class Solution(object):
            11     def pairSum(self, head):
            12         """
            13         :type head: Optional[ListNode]
            14         :rtype: int
            15         """
            16         node_slow, node_fast = head, head
            17         ans = 0
            18         while node_fast and node_fast.next:
            19             node_fast = node_fast.next.next
            20             node_slow = node_slow.next
            21         node_cur, node_pre = node_slow, None
            22         while node_cur:
            23             node_cur.next, node_pre, node_cur = node_pre, node_cur, node_cur.next
            24         while node_pre:
            25             ans = max(ans, head.val + node_pre.val)
            26             node_pre = node_pre.next
            27             head = head.next
            28         return ans
            伊人久久精品无码二区麻豆| 伊人丁香狠狠色综合久久| 欧美日韩精品久久久久| 久久永久免费人妻精品下载| 欧美精品一区二区精品久久| 欧美黑人激情性久久| 久久久久国产精品| 国产偷久久久精品专区| 国产精品欧美亚洲韩国日本久久| 少妇无套内谢久久久久| 国产成人精品综合久久久| 日韩久久久久久中文人妻| 久久93精品国产91久久综合| 国内高清久久久久久| 亚洲欧美日韩精品久久亚洲区 | 久久精品国产亚洲av影院| 久久精品国产黑森林| 狠狠色丁香久久婷婷综| 少妇内射兰兰久久| 国产精品久久久香蕉| 国产午夜电影久久| 亚洲国产成人久久综合一| 国产亚洲欧美成人久久片| 97精品久久天干天天天按摩| 久久精品国产亚洲AV影院| 久久99这里只有精品国产| 久久性生大片免费观看性| 国产综合成人久久大片91| 99久久人人爽亚洲精品美女| 丁香五月网久久综合| 久久久久亚洲AV无码麻豆| 久久久久久久人妻无码中文字幕爆 | 精品久久人人做人人爽综合| 99久久精品国产高清一区二区| 久久一日本道色综合久久| 亚洲AV日韩AV永久无码久久| 欧美噜噜久久久XXX| 国产精品久久久久影院嫩草| 久久99精品国产自在现线小黄鸭 | 99re这里只有精品热久久| 99精品国产在热久久无毒不卡 |