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

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

 26. Remove Duplicates from Sorted Array

 ----------------------------------------------------------------------------

Mean: 

数组去重.

analyse:

Time complexity: O(N)

 

view code

/**
* -----------------------------------------------------------------
* Copyright (c) 2016 crazyacking.All rights reserved.
* -----------------------------------------------------------------
*       Author: crazyacking
*       Date  : 2016-02-19-15.57
*/
#include <queue>
#include <cstdio>
#include <set>
#include <string>
#include <stack>
#include <cmath>
#include <climits>
#include <map>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
using
namespace
std;
typedef
long
long(
LL);
typedef
unsigned
long
long(
ULL);
const
double
eps(
1e-8);
class
Solution
{
public
:
   
int
removeDuplicates(
vector
<
int
>&
nums)
   
{
       
auto
endPtr
=
unique(
nums
.
begin
(),
nums
.
end());
       
return (
endPtr
-
nums
.
begin());
   
}
};
int
main()
{
   
Solution
solution;
   
int n;
   
while(
cin
>>n)
   
{
       
vector
<
int
>
ve;
       
for(
int
i
=
0;
i
<n;
++
i)
       
{
           
int
tmp;
           
cin
>>
tmp;
           
ve
.
push_back(
tmp);
       
}
       
cout
<<
solution
.
removeDuplicates(
ve)
<<
endl;
   
}
   
return
0;
}
/*
*/

转载于:https://www.cnblogs.com/crazyacking/p/5201445.html

你可能感兴趣的文章
Java全角、半角字符的关系以及转换
查看>>
Dubbo和Zookeeper
查看>>
前端项目课程3 jquery1.8.3到1.11.1有了哪些新改变
查看>>
UOJ#179. 线性规划(线性规划)
查看>>
整合spring cloud云架构 - SSO单点登录之OAuth2.0登录认证(1)
查看>>
windows的服务中的登录身份本地系统账户、本地服务账户和网络服务账户修改
查看>>
JAVA中循环删除list中元素的方法总结
查看>>
redis 安装
查看>>
SQL some any all
查看>>
电子书下载:Programming Windows Identity Foundation
查看>>
有理想的程序员必须知道的15件事
查看>>
用于测试的字符串
查看>>
财付通和支付宝资料收集
查看>>
PHPCMS V9数据库表结构分析
查看>>
理解 IEnumerable 与 IEnumerator
查看>>
NHibernate 2.0 Beta 1 Released和一些工具
查看>>
【每天一个Linux命令】12. Linux中which命令的用法
查看>>
软件接口数据一致性机制
查看>>
微服务架构介绍和RPC框架对比
查看>>
Debian下使用OpenLDAP 管理端
查看>>