-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution136.h
90 lines (72 loc) · 1.71 KB
/
Solution136.h
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
//
// Author: huanglijun
// Date : 2019/7/8
// Desc : 136. Single Number
//
/*
Given a non-empty array of integers, every element appears twice except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?
Example 1:
Input: [2,2,1]
Output: 1
Example 2:
Input: [4,1,2,1,2]
Output: 4
*/
#ifndef TESTCODE_SOLUTION136_H
#define TESTCODE_SOLUTION136_H
// fixme: 有重复比较的 待优化
// 优化1: 先排序 然后可以不用重复比较
int singleNumber1(vector<int>& nums) {
int len = (int)nums.size();
if(len <= 0) return 0;
if(len == 1) return nums[0];
int num = 0;
for(int i = 0; i < len; i++){
bool exist = false;
for(int j = 0; j < len; j++){
if(j == i) continue;
if(nums[i] == nums[j]){
exist = true;
break;
}
}
if(exist){
continue;
} else {
num = nums[i];
break;
}
}
return num;
}
int singleNumber(vector<int>& nums) {
int len = (int)nums.size();
if(len <= 0) return 0;
if(len == 1) return nums[0];
sort(nums.begin(), nums.end());
int pos = 0;
int tmpNum = 0;
while(pos < len){
tmpNum = nums[pos];
bool flag = false;
int i = pos+1;
for(; i < len; i++){
if(nums[i] == tmpNum){
pos++;
flag = true;
continue;
} else {
break;
}
}
if(!flag){
return tmpNum;
} else {
pos++;
}
}
return 0;
}
#endif //TESTCODE_SOLUTION136_H