Skip to content

Commit c32e0d1

Browse files
github-actionsgithub-actions
github-actions
authored and
github-actions
committed
updating DIRECTORY.md
1 parent 6385b02 commit c32e0d1

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

DIRECTORY.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11

2+
## [872](https://github.com/kvedala/C/blob/master//872.c)
3+
24
## Client Server
35
* [Client](https://github.com/kvedala/C/blob/master/client_server/client.c)
46
* [Server](https://github.com/kvedala/C/blob/master/client_server/server.c)
@@ -14,6 +16,7 @@
1416
* [Decimal To Octal](https://github.com/kvedala/C/blob/master/conversions/decimal_to_octal.c)
1517
* [Decimal To Octal Recursion](https://github.com/kvedala/C/blob/master/conversions/decimal_to_octal_recursion.c)
1618
* [Hexadecimal To Octal](https://github.com/kvedala/C/blob/master/conversions/hexadecimal_to_octal.c)
19+
* [Octal To Decimal](https://github.com/kvedala/C/blob/master/conversions/octal_to_decimal.c)
1720
* [To Decimal](https://github.com/kvedala/C/blob/master/conversions/to_decimal.c)
1821

1922
## Data Structures
@@ -35,16 +38,27 @@
3538
* Graphs
3639
* [Bellman-Ford](https://github.com/kvedala/C/blob/master/data_structures/graphs/Bellman-Ford.c)
3740
* [Bfs](https://github.com/kvedala/C/blob/master/data_structures/graphs/BFS.c)
41+
* [Bfsqueue](https://github.com/kvedala/C/blob/master/data_structures/graphs/bfsQueue.c)
3842
* [Dfs](https://github.com/kvedala/C/blob/master/data_structures/graphs/DFS.c)
43+
* [Dfsrecursive](https://github.com/kvedala/C/blob/master/data_structures/graphs/dfsRecursive.c)
3944
* [Dijkstra](https://github.com/kvedala/C/blob/master/data_structures/graphs/Dijkstra.c)
45+
* [Euler](https://github.com/kvedala/C/blob/master/data_structures/graphs/euler.c)
4046
* [Floyd-Warshall](https://github.com/kvedala/C/blob/master/data_structures/graphs/Floyd-Warshall.c)
47+
* [Graph](https://github.com/kvedala/C/blob/master/data_structures/graphs/Graph.c)
48+
* [Hamiltonian](https://github.com/kvedala/C/blob/master/data_structures/graphs/hamiltonian.c)
4149
* [Kruskal](https://github.com/kvedala/C/blob/master/data_structures/graphs/kruskal.c)
50+
* [Queue](https://github.com/kvedala/C/blob/master/data_structures/graphs/queue.c)
4251
* [Strongly Connected Components](https://github.com/kvedala/C/blob/master/data_structures/graphs/strongly_connected_components.c)
4352
* [Topologicalsort](https://github.com/kvedala/C/blob/master/data_structures/graphs/topologicalSort.c)
53+
* [Transitiveclosure](https://github.com/kvedala/C/blob/master/data_structures/graphs/transitiveClosure.c)
54+
* Hash Set
55+
* [Hash Set](https://github.com/kvedala/C/blob/master/data_structures/hash_set/hash_set.c)
56+
* [Main](https://github.com/kvedala/C/blob/master/data_structures/hash_set/main.c)
4457
* Heap
4558
* [Max Heap](https://github.com/kvedala/C/blob/master/data_structures/heap/max_heap.c)
4659
* [Min Heap](https://github.com/kvedala/C/blob/master/data_structures/heap/min_heap.c)
4760
* Linked List
61+
* [Circularlinkedlist](https://github.com/kvedala/C/blob/master/data_structures/linked_list/CircularLinkedList.C)
4862
* [Merge Linked Lists](https://github.com/kvedala/C/blob/master/data_structures/linked_list/merge_linked_lists.c)
4963
* [Middle Element In List](https://github.com/kvedala/C/blob/master/data_structures/linked_list/middle_element_in_list.c)
5064
* [Singly Link List Deletion](https://github.com/kvedala/C/blob/master/data_structures/linked_list/singly_link_list_deletion.c)
@@ -76,6 +90,9 @@
7690
* Word Count
7791
* [Word Count](https://github.com/kvedala/C/blob/master/exercism/word_count/word_count.c)
7892

93+
## Greedy Approach
94+
* [Djikstra](https://github.com/kvedala/C/blob/master/greedy_approach/djikstra.c)
95+
7996
## Hash
8097
* [Hash](https://github.com/kvedala/C/blob/master/hash/hash.c)
8198
* [Test Program](https://github.com/kvedala/C/blob/master/hash/test_program.c)

0 commit comments

Comments
 (0)