forked from neetcode-gh/leetcode
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0169-majority-element.rs
48 lines (42 loc) · 1.29 KB
/
0169-majority-element.rs
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
use std::collections::HashMap;
implSolution{
// Time Complexity: O(n)
// Space Complexity: O(1)
// Boyer - Moore Algorithm
pubfnmajority_element(nums:Vec<i32>) -> i32{
let(mut res,mut count) = (0,0);
for n in nums {
if count == 0{
res = n;
}
count += if n == res {1}else{ -1};
}
res
}
// Time Complexity: O(n)
// Space Complexity: O(n)
// Hashmap
pubfnmajority_element_2(nums:Vec<i32>) -> i32{
letmut count = HashMap::new();
let(mut res,mut max_count) = (0,0);
for num in nums {
*count.entry(num).or_insert(0) += 1;
res = if*count.get(&num).unwrap() > max_count {
num
}else{
res
};
max_count = i32::max(*count.get(&num).unwrap(), max_count);
}
res
}
// Time Complexity: O(nlogn)
// Space Complexity: O(1)
// Sorting
pubfnmajority_element_3(nums:Vec<i32>) -> i32{
// Since we are assured that there will be a majority element which occurs more than nums.len() / 2 times, majority element will be at nums.len() / 2 index
letmut nums = nums;
nums.sort();
nums[nums.len() / 2]
}
}