Skip to content

Commit 0da84bb

Browse files
committed
del commit
1 parent 1faf530 commit 0da84bb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

hashTable/HashTable.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class HashTable
1313
{
1414
//hashtable size
15-
private $size = 10;
15+
private $size = 100;
1616
private $buckets;
1717

1818
/**
@@ -39,7 +39,6 @@ private function hashFunc($key){
3939
// }
4040

4141
$sum = crc32($key);
42-
echo $sum."\r\n";
4342
return $sum % $this->size;
4443
}
4544

0 commit comments

Comments
 (0)