|
1 | 1 |
|
| 2 | +## [872](https://github.com/kvedala/C/blob/master//872.c) |
| 3 | + |
2 | 4 | ## Client Server
|
3 | 5 | * [Client](https://github.com/kvedala/C/blob/master/client_server/client.c)
|
4 | 6 | * [Server](https://github.com/kvedala/C/blob/master/client_server/server.c)
|
|
14 | 16 | * [Decimal To Octal](https://github.com/kvedala/C/blob/master/conversions/decimal_to_octal.c)
|
15 | 17 | * [Decimal To Octal Recursion](https://github.com/kvedala/C/blob/master/conversions/decimal_to_octal_recursion.c)
|
16 | 18 | * [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) |
17 | 20 | * [To Decimal](https://github.com/kvedala/C/blob/master/conversions/to_decimal.c)
|
18 | 21 |
|
19 | 22 | ## Data Structures
|
|
35 | 38 | * Graphs
|
36 | 39 | * [Bellman-Ford](https://github.com/kvedala/C/blob/master/data_structures/graphs/Bellman-Ford.c)
|
37 | 40 | * [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) |
38 | 42 | * [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) |
39 | 44 | * [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) |
40 | 46 | * [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) |
41 | 49 | * [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) |
42 | 51 | * [Strongly Connected Components](https://github.com/kvedala/C/blob/master/data_structures/graphs/strongly_connected_components.c)
|
43 | 52 | * [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) |
44 | 57 | * Heap
|
45 | 58 | * [Max Heap](https://github.com/kvedala/C/blob/master/data_structures/heap/max_heap.c)
|
46 | 59 | * [Min Heap](https://github.com/kvedala/C/blob/master/data_structures/heap/min_heap.c)
|
47 | 60 | * Linked List
|
| 61 | + * [Circularlinkedlist](https://github.com/kvedala/C/blob/master/data_structures/linked_list/CircularLinkedList.C) |
48 | 62 | * [Merge Linked Lists](https://github.com/kvedala/C/blob/master/data_structures/linked_list/merge_linked_lists.c)
|
49 | 63 | * [Middle Element In List](https://github.com/kvedala/C/blob/master/data_structures/linked_list/middle_element_in_list.c)
|
50 | 64 | * [Singly Link List Deletion](https://github.com/kvedala/C/blob/master/data_structures/linked_list/singly_link_list_deletion.c)
|
|
76 | 90 | * Word Count
|
77 | 91 | * [Word Count](https://github.com/kvedala/C/blob/master/exercism/word_count/word_count.c)
|
78 | 92 |
|
| 93 | +## Greedy Approach |
| 94 | + * [Djikstra](https://github.com/kvedala/C/blob/master/greedy_approach/djikstra.c) |
| 95 | + |
79 | 96 | ## Hash
|
80 | 97 | * [Hash](https://github.com/kvedala/C/blob/master/hash/hash.c)
|
81 | 98 | * [Test Program](https://github.com/kvedala/C/blob/master/hash/test_program.c)
|
|
0 commit comments