Skip to content

Add more data structures and algorithms

The general usage os Data structures and Algorithms

Like libft's t_list, all data structures must be generic using a blob and it size. Here's a list of things to add:

  • Binary Search on array of integers
  • Doubly Linked Lists containing any object
  • Stack and Queue operations for lists
  • Priority Queue
  • Hash Tables
  • Sets
  • Graphs (using adj. list and matrix)