力扣:面试题 02.01. 移除重复节点

This commit is contained in:
huangge1199 2021-02-08 13:22:26 +08:00
parent c1cc524929
commit ea8cf14329

View File

@ -0,0 +1,30 @@
package com.code.leet.study.t20210207;
import com.code.leet.entiy.ListNode;
import java.util.ArrayList;
import java.util.List;
/**
* 编写代码移除未排序链表中的重复节点保留最开始出现的节点
*/
public class RemoveDuplicateNodes {
/**
* 面试题 02.01. 移除重复节点
*/
public ListNode removeDuplicateNodes(ListNode head) {
List<Integer> list = new ArrayList<>();
ListNode temp = head;
ListNode pro = null;
while (temp != null) {
if (list.contains(temp.val)) {
pro.next = temp.next;
} else {
list.add(temp.val);
pro = temp;
}
temp = temp.next;
}
return head;
}
}