这道题目是编程珠玑第二章的三个问题的第一个,原题是

给定一个最多包含40亿个随机排列的32位整数的顺序文件,找出一个不在文件中的32位整数。(在文件中至少确实一个这样的数—-为什么?)。在具有足够内存的情况下,如何解决该问题?如果有几个外部的“临时”文件可用,但是仅有几百字节的内存,又该如何解决该问题?

首先解释下题目中的随机排列的32位整数的顺序文件,表示的是文件写入方式是顺序写入,而文件的内容是随机排列也就是无序的40亿个32位整数

因为32位的整数总共有2^32 = 4294967296个,所以40亿个整数的文件中一定有一部分数字不在文件中。在有内存的情况下,可以通过将文件内容读入内存,排序后找到

内存充足

可以采用位图法,使用一个2^32个bit位的位图,每一位的下标表示的是相应的数字,这里会存在负数的情况。
总共需要的内存是2^32 / 8 = 536870912 字节 = 512MB
因此其实只需要512MB的内存就可以形成一个40亿多个数值的位图,然后遍历数组就可以找到不存在的数据

内存不足,借助文件的方式

首先读入每个数据,第一次,将起始位为0的写入一个文件,将起始位为1的写入一个文件,并记录两堆的数字个数,第二趟进入两堆中数字较少的一堆,如果两堆的数字个数一样,那么随机进入一堆,第二次判断第二个高位的数字又生成2堆数字,直到有一次另一堆没有出现数字,就可以判断出缺失的数字了。在数字有重复的情况下这种查询方式也一样适用

算法实现

  1. /**
  2. * @param n bit位数
  3. * @param full 是否生成全部的数字
  4. * @return
  5. * @throws Exception
  6. */
  7. public static Integer findMissNumber(int n, boolean full) throws Exception {
  8. File f;
  9. if (full) {
  10. f = RandomFile.generateFull(n);
  11. } else {
  12. f = RandomFile.generate((int) Math.pow(2, n) > 10000 ? 10000 : (int) Math.pow(2, n) - 1);
  13. }
  14. String target = split(f, "", 0, n);
  15. System.out.println(target);
  16. if (target != null) {
  17. if (target.length() < n) {
  18. target = target + String.join("", Collections.nCopies(n - target.length(), "0"));
  19. System.out.println("one target: " + target);
  20. }
  21. return Integer.parseInt(target,2);
  22. } else {
  23. return null;
  24. }
  25. }
  26. /**
  27. * @param file 读取的文件
  28. * @param sequence 历史读取的0,1sequence
  29. * @param index 判断从高位起的第几位bit.
  30. * @param total 总位数
  31. * @throws Exception
  32. */
  33. public static String split(File file, String sequence, int index, int total) throws Exception {
  34. if (index >= total) {
  35. return null;
  36. }
  37. int zeroIndexCount = 0;
  38. int oneIndexCount = 0;
  39. File zeroFile = new File("/Users/aitozi/TMP/" + sequence + "0.txt");
  40. File oneFile = new File("/Users/aitozi/TMP/" + sequence + "1.txt");
  41. zeroFile.delete();
  42. oneFile.delete();
  43. FileOutputStream fos1 = new FileOutputStream(zeroFile);
  44. FileOutputStream fos2 = new FileOutputStream(oneFile);
  45. FileInputStream fis = new FileInputStream(file);
  46. BufferedReader b = new BufferedReader(new InputStreamReader(fis));
  47. String line;
  48. while ((line = b.readLine()) != null) {
  49. int value = Integer.parseInt(line);
  50. // 从高位看起
  51. byte bit = RandomFile.intToBits(total - 1 - index, value);
  52. if (bit == 1) {
  53. oneIndexCount++;
  54. fos2.write(line.getBytes());
  55. fos2.write("\n".getBytes());
  56. } else {
  57. zeroIndexCount++;
  58. fos1.write(line.getBytes());
  59. fos1.write("\n".getBytes());
  60. }
  61. }
  62. fos1.close();
  63. fos2.close();
  64. if (zeroIndexCount == 0) {
  65. return sequence + "0";
  66. }
  67. if (oneIndexCount == 0) {
  68. return sequence + "1";
  69. }
  70. if (zeroIndexCount >= oneIndexCount) {
  71. return split(oneFile, sequence + "1", index + 1, total);
  72. } else {
  73. return split(zeroFile, sequence + "0", index + 1, total);
  74. }
  75. }
  76. public static void main(String[] args) throws Exception {
  77. findMissNumber(4, true);
  78. findMissNumber(8, true);
  79. System.out.println(findMissNumber(8, false));
  80. }

主要涉及的算法

  • 二分搜索
  • 位图法

原文其实就有提示使用二分搜索, 但是没想到是通过对每个bit位二分法的查找,很精妙

其他分析
https://www.yanbinghu.com/2018/12/25/10757.html