Utilib is a project meant to be for learning data structures, networking, serializations, algorithms, etc.
Wikipedia is used for most of the implementation of the algorithms and data structures.
List of data structures I plan on coding: https://en.wikipedia.org/wiki/List_of_data_structures
- Array
- Stack
- Queue
- List (Single-linked list)
- LinkedList (Double-linked list)
- Graph
- Tree
- Binary Tree
- Binary Search Tree
- BubbleSort
- InsertionSort
- SelectionSort
- MergeSort
- QuickSort
Example of time complexity based on sortin 100.000 randomized integer array.
- Linear Search
- Binary Search
