2023每日刷题(十四)
Leetcode—169.多数元素
算法思想
由于nums中一定存在多数元素,所以将nums数组元素递增排序,取出位置的元素即可
实现代码
class Solution {
public:
int majorityElement(vector<int>& nums) {
sort(nums.begin(), nums.end());
int n = nums.size();
return nums[n / 2];
}
};
运行结果
进阶优化代码
class Solution {
public:
int majorityElement(vector<int>& nums) {
int n = nums.size();
int cnt = 1;
int i;
int ans = nums[0];
for(i = 1; i < n; i++) {
if(ans == nums[i]) {
cnt++;
} else {
cnt--;
}
if(cnt == 0) {
ans = nums[i];
cnt = 1;
}
}
return ans;
}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!