Remove Duplicates from a Linked List

Descrição

FlashCards sobre Remove Duplicates from a Linked List, criado por Suhas S em 13-02-2018.
Suhas S
FlashCards por Suhas S, atualizado more than 1 year ago
Suhas S
Criado por Suhas S quase 8 anos atrás
0
0

Resumo de Recurso

Questão Responda
Remove duplicate nodes from linked list of integers while keeping only the first occurrence of duplicates. /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution { public ListNode deleteDuplicates(ListNode head) { if(head == null) return head; ListNode temp = head; while(temp != null ){ if(temp.next == null){ break; } ListNode next = temp.next; if(temp.val == next.val){ temp.next = next.next; }else{ temp = temp.next; } } return head; } }

Semelhante

HW 2_1
Kevin Magno
Reverse Singly linked list
Suhas S