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

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

(相似题目:)

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

Example 1:

Input: 1->1->2Output: 1->2

Example 2:

Input: 1->1->2->3->3Output: 1->2->3
/** * Definition for singly-linked list. * struct ListNode { *     int val; *     ListNode *next; *     ListNode(int x) : val(x), next(NULL) {} * }; */class Solution {public:    ListNode* deleteDuplicates(ListNode* head) {        //comepared with the 81-th problem,I think this is more simple..        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;    }};

 reference:

转载于:https://www.cnblogs.com/hozhangel/p/9460742.html

你可能感兴趣的文章
右侧导航栏(动态添加数据到list)
查看>>
81、iOS本地推送与远程推送详解
查看>>
虚拟DOM
查看>>
自建数据源(RSO2)、及数据源增强
查看>>
关于View控件中的Context选择
查看>>
2018icpc徐州OnlineA Hard to prepare
查看>>
Spark的启动进程详解
查看>>
使用命令创建数据库和表
查看>>
机器视觉:SSD Single Shot MultiBox Detector
查看>>
201521123044 《Java程序设计》第1周学习总结
查看>>
MIT Scheme 的基本使用
查看>>
程序员的“机械同感”
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>
c++回调函数
查看>>
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
多米诺骨牌
查看>>
Linq 学习(1) Group & Join--网摘
查看>>
asp.net 调用前台JS调用后台,后台掉前台JS
查看>>