热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

LeetCodeRemoveDuplicatesfromSortedArrayIandII

题目Givenasortedarray,removetheduplicatesinplacesuchthateachelementappearonlyonceandreturnth

题目

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 nums = [1,1,2],

Your function should return length = 2, with the first two elements of nums being 1 and 2 respectively. It doesn't matter what you leave beyond the new length.

题意:

就是将一个已经排好序的数组进行去重,并且不考虑数组的去重之后的其他内容。

此题比较简单,因为之前也有一道去重的题目,所以做这道题就有点得心应手了。但是这里我用了一个TreeSet来处理,因为TreeSet会自动进行排序,一开始我是用HashSet来进行排序的,后来发现是HashSet是根据HashCode来进行排序的,所以不能用这个HashSet,于是我考虑用TreeSet来处理。

public class Solution
{public static int removeDuplicates(int[] nums){int length = nums.length;if(length == 0)return 0;else if(length == 1)return 1;else{int num = 0;Set uniqueSet = new TreeSet();uniqueSet.add(nums[0]);for(int i = 1; i }

有了上一题做铺垫,那么接下来的一题就是非常简单的变种:

Follow up for "Remove Duplicates":
What if duplicates are allowed at most twice?

For example,
Given sorted array nums = [1,1,1,2,2,3],

Your function should return length = 5, with the first five elements of nums being 1122 and 3. It doesn't matter what you leave beyond the new length.

只允许在数组中的值出现两次,然后重新将这个数组进行排列,并返回删除重复的数字之后的数组的长度,要求原数组的前n个不重复的数字是新删除之后的。原理同上一题类似,只不过上一天用hashSet来做,这一题用HashMap来做。

public int removeDuplicates(int[] nums){int count = 0;int length = nums.length;int[] result = new int[length];HashMap hashMap = new HashMap();int j = 0;for(int i = 0; i







推荐阅读
author-avatar
开心果娟娟
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有