码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode-876

时间:2020-03-23 23:35:00      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:code   ini   fas   ast   col   UNC   nod   turn   nbsp   

额,快慢指针,单指针是没必要当作题来做的。

 

/**
 * Definition for singly-linked list.
 * type ListNode struct {
 *     Val int
 *     Next *ListNode
 * }
 */
func middleNode(head *ListNode) *ListNode {
    slow, fast := head, head
    for fast != nil && fast.Next != nil {
        slow = slow.Next
        fast = fast.Next.Next
    }
    return slow
}

end

leetcode-876

标签:code   ini   fas   ast   col   UNC   nod   turn   nbsp   

原文地址:https://www.cnblogs.com/CherryTab/p/12556105.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!