-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path205.cpp
102 lines (95 loc) · 2.52 KB
/
205.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
91
92
93
94
95
96
97
98
99
100
101
102
#include <gtest/gtest.h>
#include <string>
#include <unordered_map>
#include <unordered_set>
using namespace std;
class Solution {
public:
bool isIsomorphic(string s, string t)
{
unordered_map<char, char> map;
for (int i = 0; i < s.size(); i++) {
if (map.find(s[i]) == map.end()) {
map[s[i]] = t[i];
}
else {
if (map[s[i]] != t[i]) {
return false;
}
}
}
map.clear();
for (int i = 0; i < t.size(); i++) {
if (map.find(t[i]) == map.end()) {
map[t[i]] = s[i];
}
else {
if (map[t[i]] != s[i]) {
return false;
}
}
}
return true;
}
bool isIsomorphic2(string s, string t)
{
unordered_map<char, char> map;
unordered_set<char> values;
for (int i = 0; i < s.size(); i++) {
if (map.find(s[i]) == map.end()) {
map[s[i]] = t[i];
}
else {
if (map[s[i]] != t[i]) {
return false;
}
}
}
// check if the values of map are unique
for (const auto &[key, value] : map) {
values.insert(value);
}
return values.size() == map.size();
}
bool isIsomorphic3(string s, string t)
{
vector<int> map1(256, -1);
vector<int> map2(256, -1);
for (int i = 0; i < s.size(); i++) {
if (map1[s[i]] != map2[t[i]]) {
return false;
}
map1[s[i]] = i;
map2[t[i]] = i;
}
return true;
}
};
class Testing : public testing::Test {
public:
Solution sol;
};
TEST_F(Testing, sol1)
{
Solution sol;
EXPECT_TRUE(sol.isIsomorphic("egg", "add"));
EXPECT_FALSE(sol.isIsomorphic("foo", "bar"));
EXPECT_TRUE(sol.isIsomorphic("paper", "title"));
EXPECT_FALSE(sol.isIsomorphic("ab", "aa"));
}
TEST_F(Testing, sol2)
{
Solution sol;
EXPECT_TRUE(sol.isIsomorphic2("egg", "add"));
EXPECT_FALSE(sol.isIsomorphic2("foo", "bar"));
EXPECT_TRUE(sol.isIsomorphic2("paper", "title"));
EXPECT_FALSE(sol.isIsomorphic2("ab", "aa"));
}
TEST_F(Testing, sol3)
{
Solution sol;
EXPECT_TRUE(sol.isIsomorphic3("egg", "add"));
EXPECT_FALSE(sol.isIsomorphic3("foo", "bar"));
EXPECT_TRUE(sol.isIsomorphic3("paper", "title"));
EXPECT_FALSE(sol.isIsomorphic3("ab", "aa"));
}