-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlinkedlist_components.cpp
62 lines (52 loc) · 1.34 KB
/
linkedlist_components.cpp
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
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
int numComponents(ListNode* head, vector<int>& G) {
/*
a. using set
b. using map
*/
unordered_set<int> ust(G.begin(), G.end());
ListNode *node = head;
int uniq_val_int = 0;
while(node != NULL){
if(ust.find(node->val) != ust.end()){
uniq_val_int++;
while(node->next && ust.find(node->next->val) != ust.end()){
node = node->next;
}
}
node = node->next;
}
return uniq_val_int;
}
};
/*
std::bitset<10000> hash;
for (int g : G) {
hash.set(g);
}
int result = 0;
while (head) {
if (hash.test(head->val)) {
result++;
}
while (head && hash.test(head->val)) {
head = head->next;
}
if (head) {
head = head->next;
}
}
return result;
}
};
auto fast = []() {std::ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);return 0;}();
*/