ShmuelFine / COOP

The C Object Oriented Programming Library
MIT License
32 stars 4 forks source link

4. Add Dictionary and Set data structures #16

Closed ShmuelFine closed 1 year ago

ShmuelFine commented 2 years ago
  1. Implement Hash Table class, and based on that make a Dictionary
  2. The Set should be based on the Tree (with n*log(n) insertion time)
RonenCode commented 2 years ago

Is it mean that there is arry that each element in the arry point to a binary tree ?