国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

[LeetCode] Remove LinkedList Elements

sherlock221 / 296人閱讀

摘要:鏈表基本的刪除操作,最好掌握以下三種方法。

Problem

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

Note

鏈表基本的刪除操作,最好掌握以下三種方法。

Solution Dummy Node
public class Solution {
    public ListNode removeElements(ListNode head, int val) {
        if (head == null) return null;
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        ListNode pre = dummy, cur = head;
        while (cur != null) {
            if (cur.val == val) pre.next = cur.next;
            else pre = pre.next;
            cur = cur.next;
        }
        return dummy.next;
    }
}
Recursion
public class Solution {
    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;
    }
}
Iteration
public class Solution {
    public ListNode removeElements(ListNode head, int val) {
        while (head != null && head.val == val) head = head.next;
        ListNode cur = head;
        while (cur != null && cur.next != null) {
            if (cur.next.val == val) cur.next = cur.next.next;
            else cur = cur.next;
        }
        return head;
    }
}

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/64771.html

相關文章

  • LeetCode 203:移除鏈表元素 Remove LinkedList Elements

    摘要:刪除鏈表中等于給定值的所有節點。鏈表的刪除操作是直接將刪除節點的前一個節點指向刪除節點的后一個節點即可。這就無需考慮頭節點是否為空是否為待刪除節點。 刪除鏈表中等于給定值 val 的所有節點。 Remove all elements from a linked list of integers that have value val. 示例: 輸入: 1->2->6->3->4->5-...

    hzc 評論0 收藏0
  • LeetCode 203:移除鏈表元素 Remove LinkedList Elements

    摘要:刪除鏈表中等于給定值的所有節點。鏈表的刪除操作是直接將刪除節點的前一個節點指向刪除節點的后一個節點即可。這就無需考慮頭節點是否為空是否為待刪除節點。 刪除鏈表中等于給定值 val 的所有節點。 Remove all elements from a linked list of integers that have value val. 示例: 輸入: 1->2->6->3->4->5-...

    makeFoxPlay 評論0 收藏0
  • [Leetcode] Combination Sum 組合數之和

    摘要:深度優先搜索復雜度時間空間遞歸棧空間思路因為我們可以任意組合任意多個數,看其和是否是目標數,而且還要返回所有可能的組合,所以我們必須遍歷所有可能性才能求解。這題是非常基本且典型的深度優先搜索并返回路徑的題。本質上是有限深度優先搜索。 Combination Sum I Given a set of candidate numbers (C) and a target number (...

    GitCafe 評論0 收藏0
  • [Leetcode] Sliding Window Maximum 滑動窗口最大值

    摘要:這樣,我們可以保證隊列里的元素是從頭到尾降序的,由于隊列里只有窗口內的數,所以他們其實就是窗口內第一大,第二大,第三大的數。 Sliding Window Maximum Given an array nums, there is a sliding window of size k which is moving from the very left of the array to...

    lvzishen 評論0 收藏0
  • [Leetcode] Zigzag Iterator Z形迭代器

    摘要:用變量和取模來判斷我們該取列表中的第幾個迭代器。同樣,由于每用完一個迭代器后都要移出一個,變量也要相應的更新為該迭代器下標的上一個下標。如果迭代器列表為空,說明沒有下一個了。 Zigzag Iterator Given two 1d vectors, implement an iterator to return their elements alternately. For exa...

    SolomonXie 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<