[leedcode 83] Remove Duplicates from Sorted List
2831 단어 remove
For example,Given
1->1->2
, return 1->2
.Given 1->1->2->3->3
, return 1->2->3
. /**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
public class Solution {
public ListNode deleteDuplicates(ListNode head) {
// :
// , index ,first ,pre first ,
// , , , ,
if(head==null||head.next==null) return head;
/* ListNode pre=head;
ListNode first=head.next;
ListNode index=head;
while(first!=null){
if(index.val==first.val){
pre.next=first.next;
first=first.next;
}else{
pre=first;
first=first.next;
index=index.next;
}
}
return head;*/
ListNode pre=head;
while(pre.next!=null){
if(pre.next.val==pre.val){
pre.next=pre.next.next;
}else{
pre=pre.next;
}
}
return head;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
2-1(2) List<E> remove(int index): 해당 인덱스의 항목을 리스트에서 삭제한다. *위 예시 풀이 - 배열로 구성되어있어서 n번방이 지워지면 앞으로 땡겨져서 전체 삭제가 되지 않는다 list에 index 5개가 있어서 for문안에서 {0,1,2,3,4...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.