- 博客(1)
- 收藏
- 关注
原创 快慢指针求单向链中点位置
1.链表长度为奇数时返回中点 偶数时返回前中点 public Node getMid1(Node head){ //单向链表要知道中点前3个起步 if(head ==null || head.next==null || head.next.next==null){ return head; } Node slow=head.next; Node fast=head.next.next; while (fast.next!=null &
2021-09-27 15:39:26 141
空空如也
frp内网穿透windows上虚拟机
2023-01-02
TA创建的收藏夹 TA关注的收藏夹
TA关注的人