Skip to content

Commit

Permalink
Merge branch 'fix_chained_hash_table' of https://github.com/tanakat01…
Browse files Browse the repository at this point in the history
…/ods into tanakat01-fix_chained_hash_table
  • Loading branch information
patmorin committed May 8, 2017
2 parents 1a9ec70 + 8c27108 commit b83f560
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cpp/ChainedHashTable.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ template<class T>
void ChainedHashTable<T>::resize() {
d = 1;
while (1<<d <= n) d++;
n = 0;
array<List> newTable(1<<d);
for (int i = 0; i < t.length; i++) {
for (int j = 0; j < t[i].size(); j++) {
Expand Down

0 comments on commit b83f560

Please sign in to comment.