码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]Isomorphic Strings

时间:2015-11-30 13:03:40      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

省事用了一个hashmap,时间复杂度是o(n2)。要是用两个hashmap时间复杂度会变为o(n)

public class Solution {
    public boolean isIsomorphic(String s, String t) {
        if (s.length() != t.length()) {
            return false;
        }
        int length = s.length();
        HashMap<Character, Character> map = new HashMap<Character, Character>();
        for (int i = 0; i < length; i++) {
            if (map.containsKey(s.charAt(i)) || map.containsValue(t.charAt(i))) {
                if (!map.containsKey(s.charAt(i)) || t.charAt(i) != map.get(s.charAt(i))) {
                    return false;
                } 
            } else {
                map.put(s.charAt(i), t.charAt(i));
                
            }
        }
        return true;
    }
}

 

[LeetCode]Isomorphic Strings

标签:

原文地址:http://www.cnblogs.com/vision-love-programming/p/5006847.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!