当前位置:网站首页>LeetCode面试题
LeetCode面试题
2022-08-05 05:19:00 【CrazyQiQi】
LeetCode面试题
热身
1. 只出现一次的数字
给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素。
说明:
你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗?
示例 1:
输入: [2,2,1]
输出: 1
示例 2:
输入: [4,1,2,1,2]
输出: 4
解法1:列表操作
class Solution {
// 列表操作
public int singleNumber(int[] nums) {
List<Integer> list = new ArrayList<>(); // 创建新的列表
for(int num : nums) {
if(!list.contains(num)) {
// 列表不包括 num
list.add(num);
} else {
list.remove((Object)num); // 移除重复 num
}
}
return list.get(0);
}
}
解法2:哈希表
class Solution {
public int singleNumber(int[] nums) {
Map<Integer, Object> map = new HashMap<>();
for(int num : nums) {
// 判断哈希表中是否已存在值
if(!map.containsKey(num)) {
map.put(num, null);
} else {
map.remove(num);
}
}
// 查找对应的 key
return map.keySet().iterator().next();
}
}
解法3:位操作
概念
如果我们对 0 和二进制位做 XOR 运算,得到的仍然是这个二进制位
a ⊕ 0=a
如果我们对相同的二进制位做 XOR 运算,返回的结果是 0
a ⊕ a=0
XOR 满足交换律和结合律
a ⊕ b ⊕ a = (a ⊕ a) ⊕ b= 0 ⊕ b = b
class Solution {
public int singleNumber(int[] nums) {
int res = 0;
for(int num : nums) {
res ^= num;
}
return res;
}
}
2. 多数元素
多数元素
给定一个大小为 n 的数组,找到其中的多数元素。多数元素是指在数组中出现次数大于 ⌊ n/2 ⌋ 的元素。
你可以假设数组是非空的,并且给定的数组总是存在多数元素。
示例 1:
输入: [3,2,3]
输出: 3
示例 2:
输入: [2,2,1,1,1,2,2]
输出: 2
解法1:暴力解法
class Solution {
public int majorityElement(int[] nums) {
// 众数数量
int ans = nums.length / 2;
// 依次遍历统计每一个元素出现的次数
for(int num : nums) {
int count = 0;
for(int a : nums) {
if(a == num) count++;
}
if (count > ans) {
return num;
}
}
}
}
解法2:排序算法
class Solution {
public int majorityElement(int[] nums) {
Arrays.sort(nums);
return nums[nums.length / 2];
}
}
边栏推荐
- Unity huatuo 革命性热更系列1.3 huatuo示例项目源码分析与启发
- Configuration of TensorFlow ObjecDetectionAPI under Anaconda3 of win10 system
- vim的三种模式
- 成功的独立开发者应对失败&冒名顶替综
- 论那些给得出高薪的游戏公司底气到底在哪里?
- spark算子-textFile算子
- spark算子-wholeTextFiles算子
- Unity3D中的ref、out、Params三种参数的使用
- Image compression failure problem
- Why can't I add a new hard disk to scan?How to solve?
猜你喜欢
随机推荐
每日一题-盛最多水的容器-0716
D46_给刚体施加的力
Blender软件介绍与使用心得
Unity中的GetEnumerator 方法及MoveNext、Reset方法
【Day5】软硬链接 文件存储,删除,目录管理命令
dsf5.0新建页面访问时重定向到首页的问题
VRRP原理及命令
不吹不黑,这的确是我看过微服务架构最好的文章!
偷题——腾讯游戏开发面试问题及解答
To TrueNAS PVE through hard disk
入门文档09 独立的watch
Getting Started Documentation 10 Resource Mapping
dsf5.0 弹框点确定没有返回值的问题
乘云科技受邀出席2022阿里云合作伙伴大会荣获“聚力行远奖”
IP地址及子网的划分
添加新硬盘为什么扫描不上?如何解决?
什么是阿里云·速成美站?
Getting Started Document 09 Standalone watch
spark operator-wholeTextFiles operator
调用TensorFlow Objection Detection API进行目标检测并将检测结果保存至本地