给定两个字符串 s 和 t,判断它们是否是同构的。
示例 1:
输入: s = "egg", t = "add"
输出: true
示例 2:
输入: s = "foo", t = "bar"
输出: false
示例 3:
输入: s = "paper", t = "title"
输出: true
说明:
你可以假设 s 和 t 具有相同的长度。
主要是判斷,在一個字符串中字符相等的位置,在另一個字符串中是否也相等。
構建了一個數組,第一次出現不同的數記爲1,第二次爲2,以此類推,看最後得到的兩個數組是否相等。
class Solution {
vector<int> toNum(string a)
{
int start=0;
vector<int>res;
unordered_map<char,int>order;
for(auto c:a)
{
if(order.count(c))
res.push_back(order[c]);
else
{
order[c]=++start;
res.push_back(start);
}
}
return res;
}
public:
bool isIsomorphic(string s, string t) {
if(s.length()!=t.length())return false;
unordered_set<int> order;
for(int i=0;i<s.length();i++)
order.insert(i);
return toNum(s) == toNum(t);
}
};
执行用时 :32 ms, 在所有 C++ 提交中击败了13.74%的用户
内存消耗 :15.4 MB, 在所有 C++ 提交中击败了5.09%的用户