题目:https://leetcode.com/problems/remove-linked-list-elements/
代码(github):https://github.com/illuz/leetcode
把链表里的等于 val 的节点都删掉。
- 直接模拟
- 递归处理
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
题目:https://leetcode.com/problems/remove-linked-list-elements/
代码(github):https://github.com/illuz/leetcode
把链表里的等于 val 的节点都删掉。