leetcode Remove Linked List Elements

818 ワード

タイトルリンククリックでリンクを開く
このコードの効率は比較的低い.各要素がnextポインタを変更するためです.解決策はforループorを用いて再帰しなくてもよい.しかし、そのようなプログラミングの複雑さは向上します.
/**
 * 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 null;
    	}
        if(head.val==val)
        {
        	head=head.next;
        	return removeElements(head, val);
        }
        else if(head.next==null&&head.val==val)
        {
        	return null;
        }
        else
        {
        	head.next=removeElements(head.next, val);
        	return head;
        }
    
    }
}

エラープロセス
Last executed input:  [], 1