Remove all elements from a linked list of integers that have value val.
Example Given: 1 –> 2 –> 6 –> 3 –> 4 –> 5 –> 6, val = 6 Return: 1 –> 2 –> 3 –> 4 –> 5
Credits: Special thanks to @mithmatt for adding this PRoblem and creating all test cases.
Subscribe to see which companies asked this question.
遍历链表删除对应节点,注意删除首节点,尾节点,最后删除后为NULL的场景
新闻热点
疑难解答