iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 26
0
自我挑戰組

刷題記錄與人生分享系列 第 26

DAY26 Remove Linked List Elements

  • 分享至 

  • xImage
  •  

題目:

https://leetcode.com/problems/remove-linked-list-elements/
刪除鏈結串列中所有指定的數值。

解題思路:

一開始先用2個指標紀錄首節點和首節點的下一個,當先行的指標不等於要求的數值,把前一個指標連到現在指標然後移動現在指標至下一個指標,直到條件不符合為止。

C版本:

struct ListNode* removeElements(struct ListNode* head, int val) {
        while(head!=NULL && head->val == val)
            head = head->next;
        if(head == NULL)
            return NULL;
        struct ListNode * p = head->next;
        struct ListNode * q = head;
        while(p)
        {
            if(p->val != val)
            {
                q->next = p;
                q = p;
            }
            else
            {
                q->next = NULL;
            }
            p = p->next;
        }
        return head;
}

Javascript版本:

var removeElements = function(head, val) {
    while(head != null && head.val == val)
        head = head.next;
    
    if(head == null)
        return null;
    var post = head.next;
    var cur = head;
    
    while(post)
    {
        if(post.val != val)
        {
            cur.next = post;
            cur = post;
        }
        else
        {
            cur.next = null;
        }
        post = post.next;
    }
    return head;
};

程式Github分享:

https://github.com/SIAOYUCHEN/leetcode

相似主題分享:

https://ithelp.ithome.com.tw/users/20100009/ironman/2500
https://ithelp.ithome.com.tw/users/20113393/ironman/2169
https://ithelp.ithome.com.tw/users/20107480/ironman/2435
https://ithelp.ithome.com.tw/users/20107195/ironman/2382
https://ithelp.ithome.com.tw/users/20119871/ironman/2210
https://ithelp.ithome.com.tw/users/20106426/ironman/2136

本日分享:

We are what we repeatedly do. Excellence, therefore, is not an act, but a habit.
我們每天做什麼,就會成為什麼樣的人。因此,卓越不是一種行為,而是一個習慣。


上一篇
DAY25 Reverse Linked List
下一篇
DAY27 Single Number
系列文
刷題記錄與人生分享34
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言