-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathDisappearElementsSln.cs
46 lines (41 loc) · 1.55 KB
/
DisappearElementsSln.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* ==============================================================================
* 功能描述:Class1
* 创 建 者:gz
* 创建日期:2017/5/3 18:55:55
* ==============================================================================*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Array.Lib
{
//Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.
//Find all the elements of [1, n] inclusive that do not appear in this array.
//Could you do it without extra space and in O(n) runtime? You may assume the returned list does not count as extra space.
public class DisappearElementsSln
{
public IList<int> FindDisappearedNumbers(int[] nums)
{
IList<int> rtn = new List<int>();
for (int i = 0; i < nums.Length; i++)
rtn.Add(i + 1);
return rtn.Except(nums).ToList(); //求差集应用在这个场合效率不好,为充分挖掘题目
}
public IList<int> FindDisappearedNumbers2(int[] nums)
{
IList<int> rtn = new List<int>();
for (int i = 0; i < nums.Length; i++)
{
int index = Math.Abs(nums[i]) - 1;
if (nums[index] > 0)
nums[index] = -nums[index];
}
for (int i = 0; i < nums.Length; i++)
{
if(nums[i]>0)
rtn.Add(i+1);
}
return rtn;
}
}
}