updating DIRECTORY.md

This commit is contained in:
github-actions 2020-05-29 18:17:14 +00:00
parent f46b4a095e
commit 9602315038

View File

@ -56,12 +56,13 @@
* [Max Heap](https://github.com/kvedala/C/blob/master/data_structures/heap/max_heap.c)
* [Min Heap](https://github.com/kvedala/C/blob/master/data_structures/heap/min_heap.c)
* Linked List
* [Ascendingpriorityqueue](https://github.com/kvedala/C/blob/master/data_structures/linked_list/ascendingpriorityqueue.c)
* [Circularlinkedlist](https://github.com/kvedala/C/blob/master/data_structures/linked_list/CircularLinkedList.C)
* [Merge Linked Lists](https://github.com/kvedala/C/blob/master/data_structures/linked_list/merge_linked_lists.c)
* [Middle Element In List](https://github.com/kvedala/C/blob/master/data_structures/linked_list/middle_element_in_list.c)
* [Queue Linked List](https://github.com/kvedala/C/blob/master/data_structures/linked_list/queue_linked_list.c)
* [Singly Link List Deletion](https://github.com/kvedala/C/blob/master/data_structures/linked_list/singly_link_list_deletion.c)
* [Stack Using Linked Lists](https://github.com/kvedala/C/blob/master/data_structures/linked_list/stack_using_linked_lists.c)
* List
* [List](https://github.com/kvedala/C/blob/master/data_structures/list/list.c)
* [Main](https://github.com/kvedala/C/blob/master/data_structures/list/main.c)
@ -314,6 +315,7 @@
* [Heap Sort](https://github.com/kvedala/C/blob/master/sorting/Heap_Sort.c)
* [Insertion Sort](https://github.com/kvedala/C/blob/master/sorting/insertion_Sort.c)
* [Merge Sort](https://github.com/kvedala/C/blob/master/sorting/merge_sort.c)
* [Merge Sort Nr](https://github.com/kvedala/C/blob/master/sorting/merge_sort_nr.c)
* [Multikey Quick Sort](https://github.com/kvedala/C/blob/master/sorting/multikey_quick_sort.c)
* [Pancake Sort](https://github.com/kvedala/C/blob/master/sorting/Pancake_Sort.c)
* [Partition Sort](https://github.com/kvedala/C/blob/master/sorting/partition_Sort.c)
@ -327,4 +329,3 @@
* [Shell Sort](https://github.com/kvedala/C/blob/master/sorting/shell_Sort.c)
* [Shell Sort2](https://github.com/kvedala/C/blob/master/sorting/shell_Sort2.c)
* [Stooge Sort](https://github.com/kvedala/C/blob/master/sorting/Stooge_Sort.c)