LeetCode 203. 移除链表元素

导读:本篇文章讲解 LeetCode 203. 移除链表元素,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

题目描述: 给你一个链表的头节点 head 和一个整数 val ,请你删除链表中所有满足 Node.val == val 的节点,并返回 新的头节点 。
示例 1:
输入:head = [1,2,6,3,4,5,6], val = 6
输出:[1,2,3,4,5]
示例 2:
输入:head = [], val = 1
输出:[]
示例 3:
输入:head = [7,7,7,7], val = 7
输出:[]
提示:
列表中的节点数目在范围 [0, 104] 内, 1 <= Node.val <= 50, 0 <= val <= 50
来源: 力扣(LeetCode)
链接: https://leetcode-cn.com/problems/remove-linked-list-elements
解决方案:
方法一: 删除头结点时,另做考虑。

public ListNode removeElements(ListNode head, int val) {
    while (head != null && head.val == val) {
		head = head.next;
	}
	if (head == null) {
		return head;
	}
	ListNode pre = head;
	ListNode cur = head.next;
	while (cur != null) {
		if (cur.val == val) {
			pre.next = cur.next;
		} else {
			pre = cur;
		}
		cur = cur.next;
	}
	return head;
}

复杂度分析

  • 时间复杂度:O(n),其中 n 是链表的长度,需要遍历链表一次。
  • 空间复杂度:O(1)

方法二: 添加一个虚拟头结点,删除头结点时,不用另做考虑。

public ListNode removeElements(ListNode head, int val) {
	// 因为删除可能涉及到头节点,所以设置dummy节点,统一操作
    ListNode dummy = new ListNode(-1, head);
	ListNode pre = dummy;
	ListNode cur = head;
	while (cur != null) {
		if (cur.val == val) {
			pre.next = cur.next;
		} else {
			pre = cur;
		}
		cur = cur.next;
	}
	
	return dummy.next;
}

复杂度分析

  • 时间复杂度: 与方法一相同
  • 空间复杂度: 与方法一相同

方法三: 递归

public ListNode removeElements(ListNode head, int val) {
        if (head == null) {
            return head;
        }
        head.next = removeElements(head.next, val);
        return head.val == val ? head.next : head;
}

复杂度分析

  • 时间复杂度:O(n),其中 n 是链表的长度。递归过程中需要遍历链表一次。
  • 空间复杂度:O(n),其中 n 是链表的长度。空间复杂度主要取决于递归调用栈,最多不会超过 n 层。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/5226.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!