题目描述:203. 移除链表元素 - 力扣(LeetCode)
答案展示:
答1(遍历删除):
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/
struct ListNode* removeElements(struct ListNode* head, int val)
{
typedef struct ListNode LN;
LN* new_head = (LN*)malloc(sizeof(LN));
new_head->next = head;
LN* new_tail = new_head;
while(new_tail->next)
{
if(new_tail->next->val==val)
new_tail->next = new_tail->next->next;
else
new_tail = new_tail->next;
}
return new_head->