chengtianxu

Results 1 comments of chengtianxu

```java if (fast != null) slow = slow.next; ``` 这一步判断奇偶其实不用也可以吧, 1 -> 2 -> 3 -> 2 -> 1的情况,第一个2的next始终指向3,就算slow从3开始reverse, 最后比较的也是head: 1 -> 2 -> 3 -> null 和 reverse(slow): 1...