Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does LeetCode delete duplicate elements in a sorted linked list

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces LeetCode how to delete the repeated elements in the sorted list, which has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, let the editor take you to understand it.

0x01, brief description of the problem

Given a sorted linked list, delete all duplicate elements so that each element appears only once.

0x02, exampl

Example 1:

Input: 1-> 1-> 2 output: 1-> 2 example 2:

Input: 1-> 1-> 2-> 3-> 3 output: 1-> 2-> 3

0x03, ideas for problem solving

Operation of linked list, iterative operation

0x04, problem solving procedure

Public class DeleteDuplicatesTest {public static void main (String [] args) {ListNode L1 = new ListNode (1); ListNode L2 = new ListNode (1); ListNode L3 = new ListNode (2); l1.next = 12; l2.next = L3; ListNode listNode = deleteDuplicates (L1); System.out.println ("listNode =" + listNode)

}

Public static ListNode deleteDuplicates (ListNode head) {if (head = = null) {return null;} if (head.next = = null) {return head;} ListNode tempNode = head; while (tempNode.next! = null) {if (tempNode.val = = tempNode.next.val) {tempNode.next = tempNode.next.next } else {tempNode = tempNode.next;}} return head;}}

0x05, photo version of the problem solving program

Thank you for reading this article carefully. I hope the article "how to remove the repetitive elements in the sorted list" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report