Leetcode
2020.05.04 08:54

203. Remove Linked List Elements

조회 수 731 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

Remove all elements from a linked list of integers that have value val.

Example:

Input:  1->2->6->3->4->5->6, val = 6
Output: 1->2->3->4->5


/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public ListNode removeElements(ListNode head, int val) {
        ListNode curr = head;
        ListNode prev = new ListNode(-1);
        prev.next = head;
        head = prev;
        
        while(curr != null){
            if(curr.val == val){
                prev.next = curr.next;
            }else{
                prev = prev.next;
            }
            
            curr = curr.next;
        }
        
        return head.next;
    }
}

[문제] https://leetcode.com/problems/remove-linked-list-elements/



?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
77 Leetcode 720. Longest Word in Dictionary hooni 2020.05.07 992
76 Leetcode 225. Implement Stack using Queues hooni 2020.05.05 810
75 Leetcode 56. Merge Intervals hooni 2020.05.05 766
74 Leetcode 844. Backspace String Compare hooni 2020.05.05 853
73 Leetcode 222. Count Complete Tree Nodes hooni 2020.05.05 792
72 Leetcode 697. Degree of an Array hooni 2020.05.05 850
71 Leetcode 605. Can Place Flowers hooni 2020.05.05 774
70 Leetcode 724. Find Pivot Index hooni 2020.05.05 783
69 Leetcode 448. Find All Numbers Disappeared in an Array hooni 2020.05.05 774
68 Leetcode 628. Maximum Product of Three Numbers hooni 2020.05.05 743
67 Leetcode 532. K-diff Pairs in an Array hooni 2020.05.04 808
66 Leetcode 897. Increasing Order Search Tree hooni 2020.05.04 760
65 Leetcode 872. Leaf-Similar Trees file hooni 2020.05.04 753
64 Leetcode 876. Middle of the Linked List hooni 2020.05.04 747
» Leetcode 203. Remove Linked List Elements hooni 2020.05.04 731
62 Leetcode 997. Find the Town Judge hooni 2020.05.02 791
61 Leetcode 270. Closest Binary Search Tree Value hooni 2020.05.01 742
60 Leetcode 687. Longest Univalue Path hooni 2020.05.01 785
59 Leetcode 783. Minimum Distance Between BST Nodes hooni 2020.05.01 803
58 Leetcode 235. Lowest Common Ancestor of a Binary Search Tree file hooni 2020.05.01 795
Board Pagination Prev 1 2 3 4 Next
/ 4