Isomorphic Strings

Given two strings s and t, determine if they are isomorphic.

Two strings are isomorphic if the characters in s can be replaced to get t.

All occurrences of a character must be replaced with another character while preserving the order of characters. No two characters may map to the same character but a character may map to itself.

For example,
Given "egg""add", return true.

Given "foo""bar", return false.

Given "paper""title", return true.

Note:
You may assume both s and t have the same length.

分析:同构字符串必须满足,s字符串中相同的字符对应t字符串中相同的字符,s字符串中不同的字符对应t字符串中不同的字符。

代码如下:

class Solution {
public:
bool isIsomorphic(string s, string t) {
char map_s[128] = { 0 };
char map_t[128] = { 0 };
int len = s.size();
for (int i = 0; i < len; ++i)
{
if (map_s[s[i]]!=map_t[t[i]]) return false;
map_s[s[i]] = i+1;
map_t[t[i]] = i+1;
}
return true;
}
};

可参考解法:

记录遍历s的每一个字母,并且记录s[i]到t[i]的映射,当发现与已有的映射不同时,说明无法同构,直接return false。然后交换s和t的位置再重来一遍,这样保证s和t之间的双向映射。

 class Solution {
public:
bool isIsomorphic(string s, string t) {
if (s.length() != t.length()) return false;
map<char, char> mp;
for (int i = 0; i < s.length(); ++i) {
if (mp.find(s[i]) == mp.end()) mp[s[i]] = t[i];
else if (mp[s[i]] != t[i]) return false;
}
mp.clear();
for (int i = 0; i < s.length(); ++i) {
if (mp.find(t[i]) == mp.end()) mp[t[i]] = s[i];
else if (mp[t[i]] != s[i]) return false;
}
return true;
}
};

题意为 判断一个字符串中是否可以由另一个字符串中的字符替换而来。

如果直接尝试替换的话实现比较麻烦,可以对两个字符串分解进行转换,看转换后的结果是否一致。 

依次用‘0’, ‘1‘...替换字符串出现的字符,如 ’abbc‘可以替换为’0112‘。需要设置一张转换表,记录转换后每个字符对应的替代字符:

class Solution {
public:
string transferStr(string s){
char table[128] = {0};
char tmp = '0';
for (int i=0; i<s.length(); i++) {
char c = s.at(i);
if (table[c] == 0) {
table[c] = tmp++;
}
s[i] = table[c];
}
return s;
}
bool isIsomorphic(string s, string t) { if (s.length() != t.length()) {
return false;
}
if (transferStr(s) == transferStr(t)) {
return true;
}
return false;
}
};

其他:

class Solution {
public:
bool isIsomorphic(string s, string t)
{
const size_t n = s.size();
if ( n != t.size())
return false; unsigned char forward_map[256] = {}, reverse_map[256] = {}; for ( int i=0; i < n; ++i)
{
unsigned char c1 = s[i];
unsigned char c2 = t[i]; if ( forward_map[c1] && forward_map[c1] != c2)
return false; if ( reverse_map[c2] && reverse_map[c2] != c1)
return false; forward_map[c1] = c2;
reverse_map[c2] = c1;
} return true;
}
};

3 lines 3ms C solution

bool isIsomorphic(char* s, char* t) {
static char n[512],*m = n + 256;
return (!*s && !*t && memset(n,0,512)) || (((!(m[*s] || n[*t] || !(m[*s] = *t, n[*t] = *s)) ||
(m[*s] == *t && n[*t] == *s)) || !memset(n,0,512)) && isIsomorphic(s+1,t+1)); }

3ms O(n) C solution:The idea is to use two arrays to store the mappings between corresponding characters of s and t.

bool isIsomorphic(char* s, char* t) {
char map[256], rmap[256]; memset(map, 0, sizeof map);
memset(rmap, 0, sizeof rmap);
for ( ; *s; ++s, ++t)
if (!map[*s]) {
if (rmap[*t]) // another character already maps to *t
return false; map[*s] = *t;
rmap[*t] = *s;
} else if (map[*s] != *t)
return false; return true;
}

  

  

  

最新文章

  1. Service 广播 到Fragment
  2. python备忘--函数
  3. 使用office生成PDF文件
  4. 测试C++代码与WebBrowser HTML的互动
  5. 《至少有那天》——IU
  6. ERROR 23 (HY000) at line 29963: Out of resources when opening file
  7. c函数习记
  8. python摇骰子猜大小的小游戏
  9. putty 窗口管理
  10. java实现对服务器的自动巡检邮件通知
  11. mongo安装,及远程连接
  12. CMDB资产采集
  13. SQLI DUMB SERIES-16
  14. 激活win10专业版
  15. SVG 文字居中整理
  16. unicode汉字编码
  17. Eclipse署动态web项目方法
  18. 缺陷管理工具JIRA破解版及其安装方法
  19. #leetcode刷题之路13-罗马数字转整数
  20. Oracle闪回机制

热门文章

  1. [百度空间] [转] 在 Visual C++ 中控制全局对象的初始化顺序
  2. 使用fwrite()函数和fprintf()函数输出数据到文件时的区别
  3. B股
  4. 时序列数据库武斗大会之 OpenTSDB 篇
  5. jvm 之 国际酒店 8 月 19 一次full GC 导致的事故
  6. 在wpf窗体上添加用户控件
  7. [你必须知道的.NET]第三十回:.NET十年(下)
  8. 十佳AngularJS框架
  9. Spring学习总结(1)——Spring AOP的概念理解
  10. Java笔记——JavaMail发送邮件