题目:https://leetcode.com/problems/delete-node-in-a-linked-list/
代码(github):https://github.com/illuz/leetcode
题目看了半天,其实是在一条单链表中删除一个节点,只给你指向这个节点的指针。
知道题意后就很简单了。直接模拟。
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
题目:https://leetcode.com/problems/delete-node-in-a-linked-list/
代码(github):https://github.com/illuz/leetcode
题目看了半天,其实是在一条单链表中删除一个节点,只给你指向这个节点的指针。
知道题意后就很简单了。直接模拟。