博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode 83: Remove Duplicates from Sorted List
阅读量:5083 次
发布时间:2019-06-13

本文共 969 字,大约阅读时间需要 3 分钟。

Given a sorted linked list, delete all duplicates such that each element appear only once.

For example,

Given 1->1->2, return 1->2.
Given 1->1->2->3->3, return 1->2->3.

 

1 /** 2  * Definition for singly-linked list. 3  * public class ListNode { 4  *     public int val; 5  *     public ListNode next; 6  *     public ListNode(int x) { val = x; } 7  * } 8  */ 9 public class Solution {10     public ListNode DeleteDuplicates(ListNode head) {11         if (head == null) return null;12         13         ListNode prior = head, cur = head.next;14         15         while (cur != null)16         {17             if (cur.val != prior.val)18             {19                 cur = cur.next;20                 prior = prior.next;21             }22             else23             {24                 cur = cur.next;25                 prior.next = cur;26             }27         }28         29         return head;30     }31 }

 

转载于:https://www.cnblogs.com/liangmou/p/7824676.html

你可能感兴趣的文章
BZOJ 2818 Gcd 线性欧拉
查看>>
生活的追求:我们生活着,为了什么?
查看>>
06.Hibernate实体类生命周期
查看>>
python机器学习-sklearn挖掘乳腺癌细胞(四)
查看>>
沉淀之log4c的malloc
查看>>
使用register_shutdown_function触发写日志,使用fastcgi_finish_request提高响应速度
查看>>
作业一
查看>>
MAVEN 打包时出现多余的类的问题
查看>>
LUOGU P3178 [HAOI2015]树上操作
查看>>
XML文件中怎么写小于号 等特殊符号
查看>>
flask-session
查看>>
Global Cache CR Requested But Current Block Received
查看>>
(转)C# Enum,Int,String的互相转换 枚举转换--非常实用
查看>>
HNU 11722 The Gougu Theorem
查看>>
大一下第2次作业(markdown改)
查看>>
宿舍桶装水配送系统参考
查看>>
计数排序
查看>>
取硬币
查看>>
然之协同系统6.4.1 SQL注入导致getshell
查看>>
本地wampserver如何配置伪静态
查看>>