PREV INDEX NEXT

Author: Unknown
Subject: Use of **
Date: Saturday, 18 Apr 2020, 10:03:21

In Aspnes' hash table ADT, he writes

struct dict { 
    int size;
    int n; 
    struct elt **table;
}

Why doesn't he just write *table instead of **table?

Also, to follow up on a previous post, what does it mean to declare a field of bucket sizes with dict?
PREV INDEX NEXT