首页 > 代码库 > [LeetCode]203. Remove Linked List Elements
[LeetCode]203. Remove Linked List Elements
203. Remove Linked List Elements
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
删除链表中指定的所有元素。
1)删除链表节点时应及时释放节点内存,以免内存泄漏。
2)如果节点值和给定值一致便删除,给*list赋值下个节点;否则取下一节点即可。
/** * Definition for singly-linked list. * struct ListNode { * int val; * struct ListNode *next; * }; */ struct ListNode* removeElements(struct ListNode* head, int val) { if ( head == NULL ) { return head; } struct ListNode **list = &head; while ( *list ) { if ( (*list)->val == val ) { struct ListNode *delete = *list; *list = (*list)->next; free(delete); } else { list = &(*list)->next; } } return head; }
[LeetCode]203. Remove Linked List Elements
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。