-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution137.h
63 lines (51 loc) · 1.23 KB
/
Solution137.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
//
// Author: huanglijun
// Date : 2019/7/11
// Desc : 137. Single Number II
//
/*
Given a non-empty array of integers, every element appears three times except for one, which appears exactly once. 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,3,2]
Output: 3
Example 2:
Input: [0,1,0,1,0,1,99]
Output: 99
*/
#ifndef TESTCODE_SOLUTION137_H
#define TESTCODE_SOLUTION137_H
int singleNumber3(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];
int count = 1;
int i = pos+1;
for(; i < len; i++){
if(nums[i] == tmpNum){
pos++;
count++;
if(count >= 3){
break;
} else {
continue;
}
} else {
break;
}
}
if(count >= 3){
pos++;
} else {
return tmpNum;
}
}
return 0;
}
#endif //TESTCODE_SOLUTION137_H