移除链表元素

给你一个链表的头节点 head 和一个整数 val ,请你删除链表中所有满足 Node.val == val 的节点,并返回 新的头节点 。
在这里插入图片描述
思路之一:
在这里插入图片描述注意:
要考虑链表为空,运行结果为空,链表只有一个节点等情况
错误示例:

#include<stdio.h>
#include<stdlib.h>
struct ListNode 
{
    int val;
    struct ListNode *next; 
};
struct ListNode* removeElements(struct ListNode* head, int val){
	struct ListNode* cur, *newhead, *tail;
	tail = NULL;
	newhead = NULL;
	cur = head;
	if (head == NULL)
		return NULL;
	while (cur)
	{
		if (cur->val != val)
		{
			if (newhead == NULL)
			{
				newhead = cur;
				tail = cur;
				cur = cur->next;
			}
			else
			{
				tail->next = cur;
				tail = cur;
				cur = cur->next;
			}
		}
		else
		{
			cur = cur->next;
		}
	}
	if (tail)
		tail->next = NULL;
	return newhead;
}
int main()
{
	struct ListNode * n1 = (struct ListNode*)malloc(sizeof(struct ListNode));
	struct ListNode * n2 = (struct ListNode*)malloc(sizeof(struct ListNode));
	struct ListNode * n3 = (struct ListNode*)malloc(sizeof(struct ListNode));
	struct ListNode * n4 = (struct ListNode*)malloc(sizeof(struct ListNode));
	n1->val = 1;
	n2->val = 2;
	n3->val = 3;
	n4->val = 4;
	n1->next = n2;
	n2->next = n3;
	n3->next = n4;
	n4->next = NULL;

	struct ListNode* plist = n1;
	removeElements(plist,3);

}

以上代码可以通过oj,但是内存泄漏的问题需要解决,代码风格也可以优化。

正确示例

#include<stdio.h>
#include<stdlib.h>
struct ListNode
{
	int val;
	struct ListNode *next;
};
struct ListNode* removeElements(struct ListNode* head, int val){
	if (head == NULL)
		return NULL;
	struct ListNode* cur = head;
	struct ListNode* newhead = NULL, *tail = NULL;
	while (cur)
	{
		//如果值是val,需要free对应的节点,
		//对应的next也被释放,难以找到下个节点,所以将下一个节点存下来
		struct ListNode* next = cur->next;
		if (cur->val != val)
		{
			if (newhead == NULL)
			{
				newhead = cur;
				tail = cur;
			}
			else
			{
				tail->next = cur;
				tail = cur;
			}
		}
		else
		{
			free(cur);
		}
		cur = next;
	}
	if (tail)
		tail->next = NULL;
	return newhead;
}
int main()
{
	struct ListNode * n1 = (struct ListNode*)malloc(sizeof(struct ListNode));
	struct ListNode * n2 = (struct ListNode*)malloc(sizeof(struct ListNode));
	struct ListNode * n3 = (struct ListNode*)malloc(sizeof(struct ListNode));
	struct ListNode * n4 = (struct ListNode*)malloc(sizeof(struct ListNode));
	n1->val = 1;
	n2->val = 2;
	n3->val = 3;
	n4->val = 4;
	n1->next = n2;
	n2->next = n3;
	n3->next = n4;
	n4->next = NULL;

	struct ListNode* plist = n1;
	removeElements(plist, 3);

}

运行结果
在这里插入图片描述如图
运行后节点n3被释放,链表变为n1->n2->n4->NULL

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

江南无故人

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值