fix: remove unnecessary code

This commit is contained in:
Mike 2024-02-01 19:40:28 -05:00
parent ff8ee40a9c
commit d2a25111ad

View file

@ -94,7 +94,7 @@ class LinkedList {
return true; return true;
} }
while (currentNode != null) { while (currentNode) {
if (currentNode.key === key) { if (currentNode.key === key) {
lastNode.next = currentNode.next; lastNode.next = currentNode.next;
this.size -= 1; this.size -= 1;
@ -133,16 +133,8 @@ class HashMap {
capacityWatcher() { capacityWatcher() {
let consumed = this.buckets.filter(Object).length; let consumed = this.buckets.filter(Object).length;
console.log(`This is the consumed value ${consumed}`);
console.log(this.capacity * this.loadFactor);
if (consumed >= this.capacity * this.loadFactor) { if (consumed >= this.capacity * this.loadFactor) {
console.log(
`BUCKET SIZE: ${this.capacity} increasing to ${
this.capacity * 2
}.\n${consumed} capacity`,
);
this.capacity = Math.round(1.25 * this.capacity); this.capacity = Math.round(1.25 * this.capacity);
console.log(this.capacity);
} }
} }
@ -213,7 +205,7 @@ class HashMap {
for (let i = 0; i < this.buckets.length; i++) { for (let i = 0; i < this.buckets.length; i++) {
if (this.buckets[i]) { if (this.buckets[i]) {
let currentNode = this.buckets[i].head; let currentNode = this.buckets[i].head;
while (currentNode != null) { while (currentNode) {
_keys.push(currentNode.key); _keys.push(currentNode.key);
currentNode = currentNode.next; currentNode = currentNode.next;
} }
@ -227,7 +219,7 @@ class HashMap {
for (let i = 0; i < this.buckets.length; i++) { for (let i = 0; i < this.buckets.length; i++) {
if (this.buckets[i]) { if (this.buckets[i]) {
let currentNode = this.buckets[i].head; let currentNode = this.buckets[i].head;
while (currentNode != null) { while (currentNode) {
_values.push(currentNode.value); _values.push(currentNode.value);
currentNode = currentNode.next; currentNode = currentNode.next;
} }
@ -241,7 +233,7 @@ class HashMap {
for (let i = 0; i < this.buckets.length; i++) { for (let i = 0; i < this.buckets.length; i++) {
if (this.buckets[i]) { if (this.buckets[i]) {
let currentNode = this.buckets[i].head; let currentNode = this.buckets[i].head;
while (currentNode != null) { while (currentNode) {
_entries.push([currentNode.key, currentNode.value]); _entries.push([currentNode.key, currentNode.value]);
currentNode = currentNode.next; currentNode = currentNode.next;
} }
@ -251,7 +243,7 @@ class HashMap {
} }
} }
let t = new HashMap(3); let t = new HashMap();
// Starter Data // Starter Data
t.set("football", "redskins"); t.set("football", "redskins");