atom.c
资源名称:c.rar [点击查看]
上传用户:shmaik
上传日期:2014-06-01
资源大小:45093k
文件大小:5k
源码类别:

VC书籍

开发平台:

C/C++

  1. static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/atom.doc,v 1.10 1997/02/21 19:42:46 drh Exp $";
  2. #include "atom.h"
  3. #include <string.h>
  4. #include "assert.h"
  5. #include <limits.h>
  6. #include "mem.h"
  7. #define NELEMS(x) ((sizeof (x))/(sizeof ((x)[0])))
  8. static struct atom {
  9. struct atom *link;
  10. int len;
  11. char *str;
  12. } *buckets[2048];
  13. static unsigned long scatter[] = {
  14. 2078917053, 143302914, 1027100827, 1953210302, 755253631, 2002600785,
  15. 1405390230, 45248011, 1099951567, 433832350, 2018585307, 438263339,
  16. 813528929, 1703199216, 618906479, 573714703, 766270699, 275680090,
  17. 1510320440, 1583583926, 1723401032, 1965443329, 1098183682, 1636505764,
  18. 980071615, 1011597961, 643279273, 1315461275, 157584038, 1069844923,
  19. 471560540, 89017443, 1213147837, 1498661368, 2042227746, 1968401469,
  20. 1353778505, 1300134328, 2013649480, 306246424, 1733966678, 1884751139,
  21. 744509763, 400011959, 1440466707, 1363416242, 973726663, 59253759,
  22. 1639096332, 336563455, 1642837685, 1215013716, 154523136, 593537720,
  23. 704035832, 1134594751, 1605135681, 1347315106, 302572379, 1762719719,
  24. 269676381, 774132919, 1851737163, 1482824219, 125310639, 1746481261,
  25. 1303742040, 1479089144, 899131941, 1169907872, 1785335569, 485614972,
  26. 907175364, 382361684, 885626931, 200158423, 1745777927, 1859353594,
  27. 259412182, 1237390611, 48433401, 1902249868, 304920680, 202956538,
  28. 348303940, 1008956512, 1337551289, 1953439621, 208787970, 1640123668,
  29. 1568675693, 478464352, 266772940, 1272929208, 1961288571, 392083579,
  30. 871926821, 1117546963, 1871172724, 1771058762, 139971187, 1509024645,
  31. 109190086, 1047146551, 1891386329, 994817018, 1247304975, 1489680608,
  32. 706686964, 1506717157, 579587572, 755120366, 1261483377, 884508252,
  33. 958076904, 1609787317, 1893464764, 148144545, 1415743291, 2102252735,
  34. 1788268214, 836935336, 433233439, 2055041154, 2109864544, 247038362,
  35. 299641085, 834307717, 1364585325, 23330161, 457882831, 1504556512,
  36. 1532354806, 567072918, 404219416, 1276257488, 1561889936, 1651524391,
  37. 618454448, 121093252, 1010757900, 1198042020, 876213618, 124757630,
  38. 2082550272, 1834290522, 1734544947, 1828531389, 1982435068, 1002804590,
  39. 1783300476, 1623219634, 1839739926, 69050267, 1530777140, 1802120822,
  40. 316088629, 1830418225, 488944891, 1680673954, 1853748387, 946827723,
  41. 1037746818, 1238619545, 1513900641, 1441966234, 367393385, 928306929,
  42. 946006977, 985847834, 1049400181, 1956764878, 36406206, 1925613800,
  43. 2081522508, 2118956479, 1612420674, 1668583807, 1800004220, 1447372094,
  44. 523904750, 1435821048, 923108080, 216161028, 1504871315, 306401572,
  45. 2018281851, 1820959944, 2136819798, 359743094, 1354150250, 1843084537,
  46. 1306570817, 244413420, 934220434, 672987810, 1686379655, 1301613820,
  47. 1601294739, 484902984, 139978006, 503211273, 294184214, 176384212,
  48. 281341425, 228223074, 147857043, 1893762099, 1896806882, 1947861263,
  49. 1193650546, 273227984, 1236198663, 2116758626, 489389012, 593586330,
  50. 275676551, 360187215, 267062626, 265012701, 719930310, 1621212876,
  51. 2108097238, 2026501127, 1865626297, 894834024, 552005290, 1404522304,
  52. 48964196, 5816381, 1889425288, 188942202, 509027654, 36125855,
  53. 365326415, 790369079, 264348929, 513183458, 536647531, 13672163,
  54. 313561074, 1730298077, 286900147, 1549759737, 1699573055, 776289160,
  55. 2143346068, 1975249606, 1136476375, 262925046, 92778659, 1856406685,
  56. 1884137923, 53392249, 1735424165, 1602280572
  57. };
  58. const char *Atom_string(const char *str) {
  59. assert(str);
  60. return Atom_new(str, strlen(str));
  61. }
  62. const char *Atom_int(long n) {
  63. char str[43];
  64. char *s = str + sizeof str;
  65. unsigned long m;
  66. if (n == LONG_MIN)
  67. m = LONG_MAX + 1UL;
  68. else if (n < 0)
  69. m = -n;
  70. else
  71. m = n;
  72. do
  73. *--s = m%10 + '0';
  74. while ((m /= 10) > 0);
  75. if (n < 0)
  76. *--s = '-';
  77. return Atom_new(s, (str + sizeof str) - s);
  78. }
  79. const char *Atom_new(const char *str, int len) {
  80. unsigned long h;
  81. int i;
  82. struct atom *p;
  83. assert(str);
  84. assert(len >= 0);
  85. for (h = 0, i = 0; i < len; i++)
  86. h = (h<<1) + scatter[(unsigned char)str[i]];
  87. h &= NELEMS(buckets)-1;
  88. for (p = buckets[h]; p; p = p->link)
  89. if (len == p->len) {
  90. for (i = 0; i < len && p->str[i] == str[i]; )
  91. i++;
  92. if (i == len)
  93. return p->str;
  94. }
  95. p = ALLOC(sizeof (*p) + len + 1);
  96. p->len = len;
  97. p->str = (char *)(p + 1);
  98. if (len > 0)
  99. memcpy(p->str, str, len);
  100. p->str[len] = '';
  101. p->link = buckets[h];
  102. buckets[h] = p;
  103. return p->str;
  104. }
  105. int Atom_length(const char *str) {
  106. struct atom *p;
  107. int i;
  108. assert(str);
  109. for (i = 0; i < NELEMS(buckets); i++)
  110. for (p = buckets[i]; p; p = p->link)
  111. if (p->str == str)
  112. return p->len;
  113. assert(0);
  114. return 0;
  115. }