您的位置:首页 > 其它

3、数组中重复的数字

2018-03-30 19:39 204 查看
1、利用哈希表,时间为O(n),但是牺牲了O(n)的空间

2、修改原数组,时间为O(n),空间为O(0)

public class Solution {
// Parameters:
//    numbers:     an array of integers
//    length:      the length of array numbers
//    duplication: (Output) the duplicated number in the array number,length of duplication array is 1,so using duplication[0] = ? in implementation;
//                  Here duplication like pointor in C/C++, duplication[0] equal *duplication in C/C++
//    这里要特别注意~返回任意重复的一个,赋值duplication[0]
// Return value:       true if the input is valid, and there are some duplications in the array number
//                     otherwise false
public boolean duplicate(int numbers[],int length,int [] duplication) {
for(int i=0;i<length;i++)
{
while(numbers[i]!=i)
{
if(numbers[i]==numbers[numbers[i]])
{
duplication[0] = numbers[i];
return true;
}
swap(numbers,i,numbers[i]);
}
}
return false;
}
public void swap(int[] numbers,int num1,int num2)
{
int a=numbers[num1];
numbers[num1]=numbers[num2];
numbers[num2]=a;
}
}


3、不修改数组,时间复杂度为nlog(n),空间复杂度为1
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: