Array Implementation of Set

  • Implement the core operations of Set efficiently (array base).
  • Analyze the time/space efficiency of array-based implementation.

We want to efficiently implement the Set ADT with an array as the underlying data structure.

Exercise Complete the following table.

OperationHow?Runtime
has
insert
remove
size
Solution

Except for size, all operations require a helper find method to check if an element exists. We cannot keep the underlying data sorted to perform Binary Search (why?). We will, however, explore this option for implementing an array-based OrderedSet ADT. Let's keep the underlying data unsorted and perform Linear Search in find.

OperationHow?Runtime
hasreturn find(t) != -1;$\Omicron(n)$
insertif (fint(t) == -1) data[numElement++] = t;$\Omicron(n)$
removeFind the element, swap with last, numElements--$\Omicron(n)$
sizereturn numElements;$\Omicron(1)$
findLinear search$\Omicron(n)$

Notice the remove strategy, which allows us to spend constant time after the element is found.