-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcount_pairs.cpp
89 lines (86 loc) · 1.83 KB
/
count_pairs.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//https://practice.geeksforgeeks.org/problems/count-pairs-whose-sum-is-equal-to-x/1
{
#include <bits/stdc++.h>
using namespace std;
struct Node
{
int data;
struct Node* next;
};
void append(struct Node** headRef, int newData)
{
struct Node* new_node = (struct Node*) malloc(sizeof(struct Node));
struct Node *last = *headRef;
new_node->data = newData;
new_node->next = NULL;
if (*headRef == NULL)
{
*headRef = new_node;
return;
}
while (last->next != NULL)
last = last->next;
last->next = new_node;
return;
}
void printList(struct Node* head){
while(head){
cout<<head->data<<' ';
head = head->next;
}
}
int countPairs(struct Node* head1, struct Node* head2, int x);
// Driver program to test above
int main()
{
int T;
cin>>T;
while(T--){
struct Node* head1 = NULL;
struct Node* head2 = NULL;
int n1, n2, tmp, x;
cin>>n1;
while(n1--){
cin>>tmp;
append(&head1, tmp);
}
cin>>n2;
while(n2--){
cin>>tmp;
append(&head2, tmp);
}
cin>>x;
cout<<countPairs(head1, head2, x)<<'
';
}
return 0;
}
}
/*This is a function problem.You only need to complete the function given below*/
/*
Structure of the node of the linked list is as
struct Node
{
int data;
struct Node* next;
};
*/
// your task is to complete this function
int countPairs(struct Node* head1, struct Node* head2, int x)
{
//Code here
unordered_set<int> tofind;
Node *traverse = head1;
int count = 0;
while(traverse != NULL){
tofind.insert(traverse->data);
traverse = traverse->next;
}
traverse = head2;
while(traverse != NULL){
if(tofind.find(x - traverse->data) != tofind.end())
count++;
traverse = traverse->next;
}
return count;
}