LeetCode 203. Remove Linked List Elements

来源:互联网 发布:java安装教程win10 编辑:程序博客网 时间:2024/06/16 12:48

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

Credits:
Special thanks to @mithmatt for adding this problem and creating all test cases.

Subscribe to see which companies asked this question

这道题目比较简单,3行代码搞定

/** * Definition for singly-linked list. * public class ListNode { *     int val; *     ListNode next; *     ListNode(int x) { val = x; } * } */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;    }}


0 0
原创粉丝点击