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

1.1 Implement an algorithm to determine if a string has all unique characters. What if you cannot use additional data structures.

时间:2015-09-16 17:25:31      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

思路: 假设给定字符串用的是ASCII编码,那么总共就只有256个字符,新建一个256个元素的boolean数组, 遍历字符串,将出现的字符在boolean数组所在位置置 1。如果碰到已经置一,表明出现重复字符,返回false。

public class IsUniqueChars_1 {
  
    public boolean solu(String s) {
        boolean table[] = new boolean[256];
        for (int i = 0; i < s.length(); i++) {
            int ascii = (int) s.charAt(i);
            if (table[ascii])
                return false;
            else
                table[ascii] = true;
        }
        return true;
    }
}

优化:如果字符串长度超过256,肯定出现过重复字符了。这是只要直接返回 false 就行

public class IsUniqueChars_1 {
    
    public boolean solu(String s) {
        if (s.length() > 256)
            return false;
        boolean table[] = new boolean[256];
        for (int i = 0; i < s.length(); i++) {
            int ascii = (int) s.charAt(i);
            if (table[ascii])
                return false;
            else
                table[ascii] = true;
        }
        return true;
    }
}

 

 

 

2015-09-16

1.1 Implement an algorithm to determine if a string has all unique characters. What if you cannot use additional data structures.

标签:

原文地址:http://www.cnblogs.com/whuyt/p/4813475.html

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