Data Structures/C Implementation of Data Structures in C. Contents Graphs DirectedWeightedGraphAdjListRepresentation.c LinkedLists DoublyLinkedList.cpp SinglyLinkedList.cpp Queues PriorityQueue PriorityQueueWithLinkedList.c QueueUsingArray.c Stack StackUsingDynamicArray.c Trees BinarySearchTree BSTInsertDeleteNode.c BinarySearchTreeInorderTraversal.c Heaps PriorityQueues PriorityQueueBinaryHeap.c HeapSortMaxHeap.c HeapSortMinHeap.c MaxHeap.c MinHeap.c HashTables HashTableWithChaining.c