195、链表的中间结点

题目描述:
给定一个带有头结点 head 的非空单链表,返回链表的中间结点。

如果有两个中间结点,则返回第二个中间结点。

示例 1:

输入:[1,2,3,4,5]
输出:此列表中的结点 3 (序列化形式:[3,4,5])
返回的结点值为 3 。 (测评系统对该结点序列化表述是 [3,4,5])。
注意,我们返回了一个 ListNode 类型的对象 ans,这样:
ans.val = 3, ans.next.val = 4, ans.next.next.val = 5, 以及 ans.next.next.next = NULL.
示例 2:

输入:[1,2,3,4,5,6]
输出:此列表中的结点 4 (序列化形式:[4,5,6])
由于该列表有两个中间结点,值分别为 3 和 4,我们返回第二个结点。

提示:

给定链表的结点数介于 1 和 100 之间。
在真实的面试中遇到过这道题?

设置两个指针,一个是以两倍的速度前进,一个是以一倍速度前进,然后判断两倍速度是否到达终点,此时就返回
代码如下:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode middleNode(ListNode head) {
      if(head == null){
			return head;
		}
		if(head.next == null){
			return head;
		}
		if(head.next.next == null){
			return head.next;
		}
		
		
		ListNode pre = head;
		ListNode last = head;
		
		while (pre != null && last != null && pre.next != null && last.next != null) {
			pre = pre.next;
			last = last.next.next;
		}
		
		return pre;  
    }
}

猜你喜欢

转载自blog.csdn.net/qq_34446716/article/details/86501120