From a6152288a590c5377ef0fab1e445f4a9bec0a022 Mon Sep 17 00:00:00 2001 From: Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> Date: Mon, 29 Apr 2024 03:09:00 +0000 Subject: Sun, Apr 28, 2024, 8:09 PM -07:00 --- wk5/pset/speller/dictionary.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/wk5/pset/speller/dictionary.c b/wk5/pset/speller/dictionary.c index e984b9f..75cfe8c 100644 --- a/wk5/pset/speller/dictionary.c +++ b/wk5/pset/speller/dictionary.c @@ -102,6 +102,20 @@ unsigned int size(void) // Unloads dictionary from memory, returning true if successful, else false bool unload(void) { - // TODO - return false; + // for every bucket + for (int i = 0; i < N; i++) + { + // while there's more in the bucket + node *current = table[i]; + while (current != NULL) + { + // record position of this node + node *this = current; + // record position of next node + current = current->next; + // free this node + free(this); + } + } + return true; } -- cgit v1.2.3