Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

876. 链表的中间结点 #22

Open
GpingFeng opened this issue Dec 25, 2020 · 0 comments
Open

876. 链表的中间结点 #22

GpingFeng opened this issue Dec 25, 2020 · 0 comments

Comments

@GpingFeng
Copy link
Owner

876. 链表的中间结点

思路——快慢节点

var middleNode = function(head) {
  // 经典使用快慢节点的方式解决
  let fast = head;
  let slow = head;
  while(fast.next && fast.next.next) {
    fast = fast.next.next;
    slow = slow.next;
  }
  // 结尾的时候有可能刚好没值,也有可能是跨过一个才没值fast.next.next
  return fast.next ? slow.next : slow;
};

复杂度分析

  • 时间复杂度 O(n)
  • 空间复杂度为 O(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant