.
            ├── index.html
            ├── LICENSE.md
            ├── MODULE_1
            │   ├── BinarySearch.c
            │   └── LinearSearch.c
            ├── MODULE_2
            │   ├── CircularQueue.c
            │   ├── DoubleEndedQueue.c
            │   ├── InfixToPostfix.c
            │   ├── PolynomialAddition.c
            │   ├── PostfixEvaluation.c
            │   ├── PriorityQueue.c
            │   ├── Queue.c
            │   ├── SparseMatrixAddition.c
            │   └── Stack.c
            ├── MODULE_3
            │   ├── DoubleLinkedList.c
            │   ├── DupLinkedList.c
            │   ├── Garbage.c
            │   ├── PolyAddLinkedList.c
            │   ├── PolyMultiLinkedList.c
            │   ├── PolyRepLinkedList.c
            │   ├── QueueUsingLinkedList.c
            │   ├── SingleLinkedList.c
            │   └── StackUsingLinkedList.c
            ├── MODULE_4
            │   ├── BFS.c
            │   ├── BinarySearchTree.c
            │   ├── BSTusingArray.c
            │   ├── DFS.c
            │   ├── DFS_Non-Rec.c
            │   └── Graph.c
            ├── MODULE_5
            │   ├── BubbleSort.c
            │   ├── HashingChaining.c
            │   ├── HashingLinear.c
            │   ├── HeapSort.c
            │   ├── InsertionSort.c
            │   ├── MergeSort.c
            │   ├── QuickSort.c
            │   └── SelectionSort.c
            └── README.md