leetcode 442. 数组中重复的数据 java
Posted yanhowever
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 442. 数组中重复的数据 java相关的知识,希望对你有一定的参考价值。
题目:
给定一个整数数组 a,其中1 ≤ a[i] ≤ n (n为数组长度), 其中有些元素出现两次而其他元素出现一次。
找到所有出现两次的元素。
你可以不用到任何额外空间并在O(n)时间复杂度内解决这个问题吗?
示例:
输入: [4,3,2,7,8,2,3,1] 输出: [2,3]
解题:
class Solution { public List<Integer> findDuplicates(int[] nums) { List<Integer> res = new ArrayList<>(); if (nums == null || nums.length == 0) return res; for (int i = 0; i < nums.length; i++) { int index = Math.abs(nums[i]) - 1; if (nums[index] > 0) nums[index] *= -1; //用负号表示已经有一次了 else { res.add(index + 1); //index + 1 == Math.abs(nums[i]) } } return res; } }
以上是关于leetcode 442. 数组中重复的数据 java的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 442.数组中重复的数据 - JavaScript
LeetCode 442 数组中重复的数据[哈希表] HERODING的LeetCode之路
(Java) LeetCode 442. Find All Duplicates in an Array —— 数组中重复的数据