-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsame-to-same.cpp
90 lines (81 loc) · 1.23 KB
/
same-to-same.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
90
#include <bits/stdc++.h>
using namespace std;
class Node
{
public:
int value;
Node *next;
Node(int value)
{
this->value = value;
this->next = NULL;
}
};
void insertIntoTail(Node *&head, int val)
{
Node *newVal = new Node(val);
if (head == NULL)
{
head = newVal;
return;
}
Node *tail = head;
while (1)
{
if (tail->next == NULL)
{
break;
}
tail = tail->next;
}
tail->next = newVal;
}
int main()
{
Node *headOne = NULL;
while (1)
{
int value;
cin >> value;
if (value == -1)
{
break;
}
insertIntoTail(headOne, value);
}
Node *headTwo = NULL;
while (1)
{
int value;
cin >> value;
if (value == -1)
{
break;
}
insertIntoTail(headTwo, value);
}
bool isMatch = true;
Node *tmpOne = headOne;
Node *tmpTwo = headTwo;
while (1)
{
if (tmpOne->next == NULL || tmpTwo->next == NULL)
{
if (tmpOne->next != tmpTwo->next)
{
isMatch = false;
}
break;
}
if (tmpOne->value != tmpTwo->value)
{
isMatch = false;
break;
}
tmpOne = tmpOne->next;
tmpTwo = tmpTwo->next;
}
string message = isMatch ? "YES" : "NO";
cout << message;
return 0;
};