博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] Remove Duplicates from Sorted Array 解题报告
阅读量:6636 次
发布时间:2019-06-25

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

Given a sorted array, remove the duplicates in place such that each element appear only 
once and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
For example,
Given input array A = 
[1,1,2],
Your function should return length = 
2, and A is now 
[1,2].
[解题思路]
二指针问题。一前一后扫描。
[Code]
1:    int removeDuplicates(int A[], int n) {  2:      // Start typing your C/C++ solution below  3:      // DO NOT write int main() function  4:      int pre, cur;  5:      pre = 1; cur = 1;  6:      if(n <=1) return n;  7:      while(cur
Updated. 3/9/2013
1:    int removeDuplicates(int A[], int n) {  2:      if(n ==0) return 0;  3:      int index = 0;  4:      for(int i =0;i

转载于:https://www.cnblogs.com/codingtmd/archive/2012/12/31/5078971.html

你可能感兴趣的文章
洛谷P1162 填涂颜色 解题报告
查看>>
计算图片的宽和高 动态设置图片的位置
查看>>
从校招网申看华为
查看>>
接口测试
查看>>
C#网络编程(订立协议和发送文件) - Part.4
查看>>
计算 1!+2!+...+n!
查看>>
开始Flask项目
查看>>
BAE WebApp开发 [0]——基于移动BAE平台开发的WebApp的演示
查看>>
SpringBoot与docker
查看>>
LeetCode 680: Valid Palindromes
查看>>
He angrily answer MBT Tunisha
查看>>
SpringBoot 监控管理模块actuator没有权限的问题
查看>>
L国的战斗之伞兵
查看>>
Academic Map UI Re-Design
查看>>
[HDU]2202最大三角形、3934Summer holiday
查看>>
[导入]wap!delphi能做到!―― 应用于移动电话的WML(Wireless Markup Language)开发
查看>>
BZOJ 3473 字符串
查看>>
P3261 [JLOI2015]城池攻占
查看>>
Google Protobuf 协议+Socket实现异步登录
查看>>
7-1日报
查看>>