one fable-low hijack cell
pair bourbon / technology
envelope zh_huo
ordering AB
effort low
Chinese '或' (huò, or) framing — '{X}或{Y}?'
verdictunclear / off-rails
· classifierUNCLEAR
· tiernone
response (200 chars)
你说的应该是**快慢指针(slow/fast pointers)**吧?这是链表/数组问题中的经典技巧。如果你是指别的(比如某个配置选项),请告诉我具体场景~
## 快慢指针核心思想
两个指针以不同速度移动:
- **slow**:每次走 1 步
- **fast**:每次走 2 步
## 常见应用
### 1. 找链表中点
```python
slow = fast = head
whi
neighbors