js css html数据结构和算法

链表 - LeetCode 83.删除排序链表中的重复元素

2023-11-10  本文已影响0人  我阿郑

给定一个排序链表,删除所有重复的元素,使得每个元素只出现一次。

// 示例 1:
输入: 1->1->2
输出: 1->2

// 示例 2:
输入: 1->1->2->3->3
输出: 1->2->3

提示:

解题思路:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode deleteDuplicates(ListNode head) {
        ListNode cur = head;
        while(cur != null && cur.next != null) {
            if(cur.val == cur.next.val) {
                cur.next = cur.next.next;
            } else {
                cur = cur.next;
            }
        }
        return head;
    }
}
image.png
上一篇下一篇

猜你喜欢

热点阅读