题目:一个数组里,除了三个数是唯一出现的,其余的都出现偶数个,找出这三个数中的任一个。比如数组元素为【1,2,3,5,2,3,4,4,6】,只有 1,5,6 这三个数字是唯一出现的,我们只需要输出1,5,6中的一个就行。
思路:
1.排序
1,2,2,3,3,4,4,5,6
2.找唯一数
1)if x[i]==x[i+1] then i+=1 count++
2)if x[i]!=x[i+1]&&count==0 then output x[i]
3)else count=0
时间: 2024-10-27 17:45:26