28

“非空”是指在这个问题中包含至少一个非零字符的字符串。

作为参考,这里是hashCode实现:

1493    public int hashCode() {
1494        int h = hash;
1495        if (h == 0) {
1496            int off = offset;
1497            char val[] = value;
1498            int len = count;
1499
1500            for (int i = 0; i < len; i++) {
1501                h = 31*h + val[off++];
1502            }
1503            hash = h;
1504        }
1505        return h;
1506    }

并且算法在文档中指定。

在整数溢出发生之前,答案很简单:不是。但我想知道的是,由于整数溢出,非空字符串的哈希码是否可能为零?你能建一个吗?

理想情况下,我正在寻找的是数学演示(或链接)或构造算法。

4

3 回答 3

42

当然。例如,字符串f5a5a608的哈希码为零。

我通过简单的蛮力搜索发现:

public static void main(String[] args){
    long i = 0;
    loop: while(true){
        String s = Long.toHexString(i);
        if(s.hashCode() == 0){
            System.out.println("Found: '"+s+"'");
            break loop;
        }
        if(i % 1000000==0){
            System.out.println("checked: "+i);              
        }
        i++;
    }       
}

编辑:在 JVM 上工作的 Joseph Darcy 甚至编写了一个程序,该程序可以通过基本上反向运行哈希算法来构造具有给定哈希码的字符串(以测试在 switch/case 语句中字符串的实现)。

于 2013-09-11T16:39:52.353 回答
2

小心点int h;。它可能会溢出,每个满足的字符串都h % 2^31 == 0可能导致这种情况。

public class HelloWorld {
    public static void main(String []args) {
       System.out.println("\u0001!qbygvW".hashCode());
        System.out.println("9 $Ql(0".hashCode());
        System.out.println(" #t(}lrl".hashCode());
        System.out.println(" !!#jbw}a".hashCode());
        System.out.println(" !!#jbw|||".hashCode());
        System.out.println(" !!!!Se|aaJ".hashCode());
        System.out.println(" !!!!\"xurlls".hashCode());
    }
}

很多串...

于 2018-04-27T06:01:54.840 回答
1

这是查找和打印任何所需hashCode值的字符串的代码:

public static int findIntInverse(int x) {
    // find the number y such that as an int (after overflow) x*y = 1
    // assumes x is odd, because without that it isn't possible.
    // works by computing x ** ((2 ** 32) - 1)
    int retval = 1;
    for (int i = 0; i < 31; i++) {
        retval *= retval;
        retval *= x;
    }
    return retval;
}

public static void findStrings(
        int targetHash,
        Iterable<String> firstParts,
        Iterable<String> midParts,
        Iterable<String> lastParts) {
    Map<Integer, String> firstHashes = new HashMap<>();
    for (String firstPart : firstParts) {
        firstHashes.put(firstPart.hashCode(), firstPart);
    }
    int maxlastlen = 0;
    int maxmidlen = 0;
    for (String midPart : midParts) {
        maxmidlen = Math.max(midPart.length(), maxmidlen);
    }
    for (String lastPart : lastParts) {
        maxlastlen = Math.max(lastPart.length(), maxlastlen);
    }
    List<Integer> hashmuls = new ArrayList<>();
    String baseStr = "\u0001";
    for (int i = 0; i <= maxmidlen + maxlastlen; i++) {
        hashmuls.add(baseStr.hashCode());
        baseStr += "\0";
    }
    // now change each hashmuls into its negative "reciprocal"
    for (int i = 0; i < hashmuls.size(); i++) {
        hashmuls.set(i, -findIntInverse(hashmuls.get(i)));
    }
    for (String lastPart : lastParts) {
        for (String midPart : midParts) {
            String tail = midPart + lastPart;
            Integer target = hashmuls.get(tail.length()) * (tail.hashCode() - targetHash);
            if (firstHashes.containsKey(target)) {
                System.out.print(firstHashes.get(target));
                System.out.println(tail);
            }
        }
    }
}

通过使用常用英语单词列表作为每个部分的种子,发现了一些有趣的发现:

sand nearby chair
king concentration feeling
childhood dish tight
war defensive to
ear account virus

使用Arrays.asList(" ")asmidParts和一个大的英语单词列表来表示firstPartsand lastParts,我们可以找到众所周知的pollinating sandboxesas revolvingly admissablelaccaic dephasetoxity fizzes等。

请注意,如果您为 和 提供一个大小为NfindStrings的大型列表,并为 提供一个简短的固定列表,它会在O(N)时间内运行。firstPartslastPartsmidParts

于 2021-08-18T09:56:10.693 回答