Java C++题解leetcode817链表组件示例
短信预约 -IT技能 免费直播动态提醒
题目要求
思路:模拟
Java
class Solution {
public int numComponents(ListNode head, int[] nums) {
int res = 0;
Set<Integer> set = new HashSet<>();
for (int x : nums)
set.add(x); // 转存nums
while (head != null) {
if (set.contains(head.val)) {
while (head != null && set.contains(head.val))
head = head.next;
res++;
}
else {
head = head.next;
}
}
return res;
}
}
- 时间复杂度:O(n),遍历整个链表
- 空间复杂度:O(n),转存nums
C++
class Solution {
public:
int numComponents(ListNode* head, vector<int>& nums) {
int res = 0;
unordered_set<int> set(nums.begin(), nums.end()); // 转存nums
while (head) {
if (set.count(head->val)) {
while (head && set.count(head->val))
head = head->next;
res++;
}
else {
head = head->next;
}
}
return res;
}
};
- 时间复杂度:O(n),遍历整个链表
- 空间复杂度:O(n),转存nums
Rust
use std::collections::HashSet;
impl Solution {
pub fn num_components(mut head: Option<Box<ListNode>>, nums: Vec<i32>) -> i32 {
let mut head = head.as_ref();
let mut res = 0;
let mut status = false; // 是否处于同一个组件
while let Some(node) = head {
if nums.contains(&node.val) {
if !status {
res += 1;
status = true;
}
} else {
status = false;
}
head = node.next.as_ref();
}
res
}
}
- 时间复杂度:O(n),遍历整个链表
- 空间复杂度:O(n),转存nums
总结
简单模拟题,没想到转存用哈希表的内置函数,还想着要排序方便查找……对于消耗空间的方法总是不太敏感。
以上就是Java C++题解leetcode817链表组件示例的详细内容,更多关于Java C++题解链表组件的资料请关注编程网其它相关文章!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341