205:同构字符串
This commit is contained in:
parent
7106c6f516
commit
d147e61698
71
src/main/java/leetcode/editor/cn/IsomorphicStrings.java
Normal file
71
src/main/java/leetcode/editor/cn/IsomorphicStrings.java
Normal file
@ -0,0 +1,71 @@
|
||||
//给定两个字符串 s 和 t,判断它们是否是同构的。
|
||||
//
|
||||
// 如果 s 中的字符可以按某种映射关系替换得到 t ,那么这两个字符串是同构的。
|
||||
//
|
||||
// 每个出现的字符都应当映射到另一个字符,同时不改变字符的顺序。不同字符不能映射到同一个字符上,相同字符只能映射到同一个字符上,字符可以映射到自己本身。
|
||||
//
|
||||
//
|
||||
//
|
||||
// 示例 1:
|
||||
//
|
||||
//
|
||||
//输入:s = "egg", t = "add"
|
||||
//输出:true
|
||||
//
|
||||
//
|
||||
// 示例 2:
|
||||
//
|
||||
//
|
||||
//输入:s = "foo", t = "bar"
|
||||
//输出:false
|
||||
//
|
||||
// 示例 3:
|
||||
//
|
||||
//
|
||||
//输入:s = "paper", t = "title"
|
||||
//输出:true
|
||||
//
|
||||
//
|
||||
//
|
||||
// 提示:
|
||||
//
|
||||
//
|
||||
// 可以假设 s 和 t 长度相同。
|
||||
//
|
||||
// Related Topics 哈希表 字符串
|
||||
// 👍 366 👎 0
|
||||
|
||||
package leetcode.editor.cn;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
//205:同构字符串
|
||||
public class IsomorphicStrings{
|
||||
public static void main(String[] args) {
|
||||
//测试代码
|
||||
Solution solution = new IsomorphicStrings().new Solution();
|
||||
solution.isIsomorphic("badc","baba");
|
||||
}
|
||||
//力扣代码
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
class Solution {
|
||||
public boolean isIsomorphic(String s, String t) {
|
||||
Map<Character,Character> sMap = new HashMap<>();
|
||||
Map<Character,Character> tMap = new HashMap<>();
|
||||
for (int i = 0; i < s.length(); i++) {
|
||||
char sch = s.charAt(i);
|
||||
char tch = t.charAt(i);
|
||||
if((sMap.containsKey(sch)&&sMap.get(sch)!=tch)||(tMap.containsKey(tch)&&tMap.get(tch)!=sch)){
|
||||
return false;
|
||||
}
|
||||
sMap.put(sch,tch);
|
||||
tMap.put(tch,sch);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
35
src/main/java/leetcode/editor/cn/IsomorphicStrings.md
Normal file
35
src/main/java/leetcode/editor/cn/IsomorphicStrings.md
Normal file
@ -0,0 +1,35 @@
|
||||
<p>给定两个字符串 <em><strong>s </strong></em>和 <strong><em>t</em></strong>,判断它们是否是同构的。</p>
|
||||
|
||||
<p>如果 <em><strong>s </strong></em>中的字符可以按某种映射关系替换得到 <strong><em>t </em></strong>,那么这两个字符串是同构的。</p>
|
||||
|
||||
<p>每个出现的字符都应当映射到另一个字符,同时不改变字符的顺序。不同字符不能映射到同一个字符上,相同字符只能映射到同一个字符上,字符可以映射到自己本身。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong><strong><em>s</em></strong> = <code>"egg", </code><strong><em>t = </em></strong><code>"add"</code>
|
||||
<strong>输出:</strong>true
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong><strong><em>s</em></strong> = <code>"foo", </code><strong><em>t = </em></strong><code>"bar"</code>
|
||||
<strong>输出:</strong>false</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong><strong><em>s</em></strong> = <code>"paper", </code><strong><em>t = </em></strong><code>"title"</code>
|
||||
<strong>输出:</strong>true</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>可以假设 <em><strong>s </strong></em>和 <strong><em>t </em></strong>长度相同。</li>
|
||||
</ul>
|
||||
<div><div>Related Topics</div><div><li>哈希表</li><li>字符串</li></div></div>\n<div><li>👍 366</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user