| 35 | }; |
| 36 | |
| 37 | void showBuckets(dictht ht) { |
| 38 | if (ht.table == NULL) { |
| 39 | printf("NULL\n"); |
| 40 | } else { |
| 41 | int j; |
| 42 | for (j = 0; j < ht.size; j++) { |
| 43 | printf("%c", ht.table[j] ? '1' : '0'); |
| 44 | } |
| 45 | printf("\n"); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | void show(dict *d) { |
| 50 | int j; |