问题
在重复数字的数组中查找非重复数字的列表。
我的解决方案
public static int[] FindNonRepeatedNumber(int[] input)
{
List<int> nonRepeated = new List<int>();
bool repeated = false;
for (int i = 0; i < input.Length; i++)
{
repeated = false;
for (int j = 0; j < input.Length; j++)
{
if ((input[i] == input[j]) && (i != j))
{
//this means the element is repeated.
repeated = true;
break;
}
}
if (!repeated)
{
nonRepeated.Add(input[i]);
}
}
return nonRepeated.ToArray();
}
时间和空间复杂度 时间复杂度 = O(n^2) 空间复杂度 = O(n)
我不确定上面计算的时间复杂度,以及如何使这个程序更高效和快速。