給定乙個排序鍊錶,刪除所有重複的元素,使得每個元素只出現一次。
示例 1:
輸入:1->1->2輸出:1->2
示例 2:
輸入:1->1->2->3->3輸出:1->2->3
第乙個while loop用來遍歷鍊錶,第二個while loop用來遍歷相同的值。還是很好理解的乙個題。
class solution:
def deleteduplicates(self, head: listnode) -> listnode:
current = head
while current:
current_next = current.next
while current_next and current.val==current_next.val:
current_next = current_next.next
current.next = current_next
current = current_next
return head
LeetCode 83 刪除排序鍊錶中的重複元素
給定乙個排序鍊錶,刪除所有重複的元素,使得每個元素只出現一次。definition for singly linked list.struct listnode struct listnode deleteducurrent nodelicates struct listnode head 示例 1...
LeetCode 83 刪除排序鍊錶中的重複元素
題目描述 給定乙個排序鍊錶,刪除所有重複的元素,使得每個元素只出現一次。示例 輸入 1 1 2 輸出 1 2輸入 1 1 2 3 3 輸出 1 2 3解題思路 直接判斷下個節點的val是否與當前節點相同,相同則刪除,不同則將向後移。ac definition for singly linked li...
leetcode83 刪除排序鍊錶中的重複元素
描述 給定乙個排序鍊錶,刪除所有重複的元素,使得每個元素只出現一次。示例 1 輸入 1 1 2輸出 1 2示例 2 輸入 1 1 2 3 3輸出 1 2 3解答 1.直接求解 通過將結點的值與它之後的結點進行比較來確定它是否為重複結點。如果它是重複的,我們更改當前結點的next指標,以便它跳過下乙個...