Skip to content

Commit 5110300

Browse files
github-actionsvdnhi
authored andcommitted
updating DIRECTORY.md
1 parent 2137c99 commit 5110300

File tree

1 file changed

+45
-45
lines changed

1 file changed

+45
-45
lines changed

DIRECTORY.md

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -17,83 +17,83 @@
1717
* [Xor Cipher Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/xor/xor_cipher_test.go)
1818
* [Xorcipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/xor/xorCipher.go)
1919

20-
## Data-Structures
20+
## Datastructures
2121
* Binary-Tree
22-
* [Binary-Search-Tree](https://github.com/TheAlgorithms/Go/blob/master/data-structures/binary-tree/binary-search-tree.go)
23-
* [Binary-Tree](https://github.com/TheAlgorithms/Go/blob/master/data-structures/binary-tree/binary-tree.go)
22+
* [Binarysearchtree](https://github.com/TheAlgorithms/Go/blob/master/datastructures/binary-tree/binarysearchtree.go)
23+
* [Binarytree](https://github.com/TheAlgorithms/Go/blob/master/datastructures/binary-tree/binarytree.go)
2424
* Dynamic-Array
25-
* [Dynamic Array](https://github.com/TheAlgorithms/Go/blob/master/data-structures/dynamic-array/dynamic_array.go)
26-
* Hash-Map
27-
* [Hash Map](https://github.com/TheAlgorithms/Go/blob/master/data-structures/hash-map/hash_map.go)
28-
* [Hash Map Test](https://github.com/TheAlgorithms/Go/blob/master/data-structures/hash-map/hash_map_test.go)
29-
* Linked-List
30-
* [Double-Linkedlist](https://github.com/TheAlgorithms/Go/blob/master/data-structures/linked-list/double-linkedlist.go)
31-
* [Linkedlist](https://github.com/TheAlgorithms/Go/blob/master/data-structures/linked-list/Linkedlist.go)
25+
* [Dynamicarray](https://github.com/TheAlgorithms/Go/blob/master/datastructures/dynamic-array/dynamicarray.go)
26+
* Hashmap
27+
* [Hashmap](https://github.com/TheAlgorithms/Go/blob/master/datastructures/hashmap/hashmap.go)
28+
* [Hashmap Test](https://github.com/TheAlgorithms/Go/blob/master/datastructures/hashmap/hashmap_test.go)
29+
* Linkedlist
30+
* [Doublylinkedlist](https://github.com/TheAlgorithms/Go/blob/master/datastructures/linkedlist/doublylinkedlist.go)
3231
* Singlelinkedlist
33-
* [Single-Linkedlist](https://github.com/TheAlgorithms/Go/blob/master/data-structures/linked-list/singlelinkedlist/single-linkedlist.go)
34-
* [Single-Linkedlist Test](https://github.com/TheAlgorithms/Go/blob/master/data-structures/linked-list/singlelinkedlist/single-linkedlist_test.go)
32+
* [Single-Linkedlist](https://github.com/TheAlgorithms/Go/blob/master/datastructures/linkedlist/singlelinkedlist/single-linkedlist.go)
33+
* [Single-Linkedlist Test](https://github.com/TheAlgorithms/Go/blob/master/datastructures/linkedlist/singlelinkedlist/single-linkedlist_test.go)
34+
* [Singlylinkedlist](https://github.com/TheAlgorithms/Go/blob/master/datastructures/linkedlist/singlylinkedlist.go)
3535
* Trie
36-
* [Trie](https://github.com/TheAlgorithms/Go/blob/master/data-structures/trie/trie.go)
37-
* [Trie Test](https://github.com/TheAlgorithms/Go/blob/master/data-structures/trie/trie_test.go)
36+
* [Trie](https://github.com/TheAlgorithms/Go/blob/master/datastructures/trie/trie.go)
37+
* [Trie Test](https://github.com/TheAlgorithms/Go/blob/master/datastructures/trie/trie_test.go)
3838

39-
## Dynamic-Programming
40-
* [Binomial-Coeffecient](https://github.com/TheAlgorithms/Go/blob/master/dynamic-programming/binomial-coeffecient.go)
41-
* [Knapsack](https://github.com/TheAlgorithms/Go/blob/master/dynamic-programming/knapsack.go)
42-
* [Longest-Palindromic-Subsequence](https://github.com/TheAlgorithms/Go/blob/master/dynamic-programming/longest-palindromic-subsequence.go)
43-
* [Longestcommonsubsequence](https://github.com/TheAlgorithms/Go/blob/master/dynamic-programming/longestCommonSubsequence.go)
44-
* [Matrix-Multiplication](https://github.com/TheAlgorithms/Go/blob/master/dynamic-programming/matrix-multiplication.go)
45-
* [Rod-Cutting](https://github.com/TheAlgorithms/Go/blob/master/dynamic-programming/rod-cutting.go)
39+
## Dynamicprogramming
40+
* [Binomialcoeffecient](https://github.com/TheAlgorithms/Go/blob/master/dynamicprogramming/binomialcoeffecient.go)
41+
* [Knapsack](https://github.com/TheAlgorithms/Go/blob/master/dynamicprogramming/knapsack.go)
42+
* [Longest-Palindromic-Subsequence](https://github.com/TheAlgorithms/Go/blob/master/dynamicprogramming/longest-palindromic-subsequence.go)
43+
* [Longestcommonsubsequence](https://github.com/TheAlgorithms/Go/blob/master/dynamicprogramming/longestCommonSubsequence.go)
44+
* [Matrix-Multiplication](https://github.com/TheAlgorithms/Go/blob/master/dynamicprogramming/matrix-multiplication.go)
45+
* [Rod-Cutting](https://github.com/TheAlgorithms/Go/blob/master/dynamicprogramming/rod-cutting.go)
4646

4747
## Graphs
48-
* [Floyd Warshall](https://github.com/TheAlgorithms/Go/blob/master/graphs/floyd_warshall.go)
48+
* [Breathfirstsearch](https://github.com/TheAlgorithms/Go/blob/master/graphs/breathfirstsearch.go)
49+
* [Depthfirstsearch](https://github.com/TheAlgorithms/Go/blob/master/graphs/depthfirstsearch.go)
50+
* [Floydwarshall](https://github.com/TheAlgorithms/Go/blob/master/graphs/floydwarshall.go)
4951

5052
## Math
5153
* Gcd
52-
* [Greatest Common Divisor](https://github.com/TheAlgorithms/Go/blob/master/math/gcd/greatest_common_divisor.go)
53-
* [Greatest Common Divisor Test](https://github.com/TheAlgorithms/Go/blob/master/math/gcd/greatest_common_divisor_test.go)
54+
* [Gcd](https://github.com/TheAlgorithms/Go/blob/master/math/gcd/gcd.go)
55+
* [Gcd Test](https://github.com/TheAlgorithms/Go/blob/master/math/gcd/gcd_test.go)
5456
* Power
55-
* [Fastexponent](https://github.com/TheAlgorithms/Go/blob/master/math/power/fastExponent.go)
56-
* [Fastexponent Test](https://github.com/TheAlgorithms/Go/blob/master/math/power/fastExponent_test.go)
57+
* [Fastexponent](https://github.com/TheAlgorithms/Go/blob/master/math/power/fastexponent.go)
58+
* [Fastexponent Test](https://github.com/TheAlgorithms/Go/blob/master/math/power/fastexponent_test.go)
5759
* Primecheck
58-
* [Prime Check](https://github.com/TheAlgorithms/Go/blob/master/math/primecheck/prime_check.go)
59-
* [Prime Check Test](https://github.com/TheAlgorithms/Go/blob/master/math/primecheck/prime_check_test.go)
60+
* [Primecheck](https://github.com/TheAlgorithms/Go/blob/master/math/primecheck/primecheck.go)
61+
* [Primecheck Test](https://github.com/TheAlgorithms/Go/blob/master/math/primecheck/primecheck_test.go)
6062
* Pythagoras
6163
* [Pythagoras](https://github.com/TheAlgorithms/Go/blob/master/math/pythagoras/pythagoras.go)
6264
* [Pythagoras Test](https://github.com/TheAlgorithms/Go/blob/master/math/pythagoras/pythagoras_test.go)
6365
* Sieve
6466
* [Sieve](https://github.com/TheAlgorithms/Go/blob/master/math/sieve/Sieve.go)
6567

6668
## Other
67-
* [Maxsubarraysum](https://github.com/TheAlgorithms/Go/blob/master/other/maxSubarraySum.go)
69+
* [Maxsubarraysum](https://github.com/TheAlgorithms/Go/blob/master/other/maxsubarraysum.go)
6870
* Monte Carlo Pi
6971
* [Monte Carlo Pi](https://github.com/TheAlgorithms/Go/blob/master/other/monte_carlo_pi/monte_carlo_pi.go)
7072
* [Monte Carlo Pi Test](https://github.com/TheAlgorithms/Go/blob/master/other/monte_carlo_pi/monte_carlo_pi_test.go)
71-
* [Nestedbrackets](https://github.com/TheAlgorithms/Go/blob/master/other/NestedBrackets.go)
72-
* [Passwordgenerator](https://github.com/TheAlgorithms/Go/blob/master/other/PasswordGenerator.go)
73+
* [Nestedbrackets](https://github.com/TheAlgorithms/Go/blob/master/other/nestedbrackets.go)
74+
* [Passwordgenerator](https://github.com/TheAlgorithms/Go/blob/master/other/passwordgenerator.go)
7375
* [Prime Numbers](https://github.com/TheAlgorithms/Go/blob/master/other/prime_numbers.go)
7476
* [Primenumbers](https://github.com/TheAlgorithms/Go/blob/master/other/PrimeNumbers.go)
75-
* [String Combinations](https://github.com/TheAlgorithms/Go/blob/master/other/string_combinations.go)
77+
* [Stringcombinations](https://github.com/TheAlgorithms/Go/blob/master/other/stringcombinations.go)
7678

7779
## Searches
78-
* [Binary Search](https://github.com/TheAlgorithms/Go/blob/master/searches/binary_search.go)
79-
* [Breadth First Search](https://github.com/TheAlgorithms/Go/blob/master/searches/breadth_first_search.go)
80-
* [Depth First Search](https://github.com/TheAlgorithms/Go/blob/master/searches/depth_first_search.go)
81-
* [Linear Search](https://github.com/TheAlgorithms/Go/blob/master/searches/linear_search.go)
80+
* [Binarysearch](https://github.com/TheAlgorithms/Go/blob/master/searches/binarysearch.go)
81+
* [Linearsearch](https://github.com/TheAlgorithms/Go/blob/master/searches/linearsearch.go)
8282
* [Search Test](https://github.com/TheAlgorithms/Go/blob/master/searches/search_test.go)
8383

8484
## Sorts
8585
* [Bubblesort](https://github.com/TheAlgorithms/Go/blob/master/sorts/bubblesort.go)
8686
* [Countingsort](https://github.com/TheAlgorithms/Go/blob/master/sorts/countingsort.go)
87-
* [Heap Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/heap_sort.go)
88-
* [Insertion Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/insertion_sort.go)
89-
* [Merge Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/merge_sort.go)
90-
* [Quick Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/quick_sort.go)
91-
* [Radix Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/radix_sort.go)
92-
* [Selection Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/selection_sort.go)
93-
* [Shell Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/shell_sort.go)
94-
* [Sorts Case Test](https://github.com/TheAlgorithms/Go/blob/master/sorts/sorts_case_test.go)
87+
* [Heapsort](https://github.com/TheAlgorithms/Go/blob/master/sorts/heapsort.go)
88+
* [Insertionsort](https://github.com/TheAlgorithms/Go/blob/master/sorts/insertionsort.go)
89+
* [Mergesort](https://github.com/TheAlgorithms/Go/blob/master/sorts/mergesort.go)
90+
* [Quicksort](https://github.com/TheAlgorithms/Go/blob/master/sorts/quicksort.go)
91+
* [Radixsort](https://github.com/TheAlgorithms/Go/blob/master/sorts/radixsort.go)
92+
* [Selectionsort](https://github.com/TheAlgorithms/Go/blob/master/sorts/selectionsort.go)
93+
* [Shellsort](https://github.com/TheAlgorithms/Go/blob/master/sorts/shellsort.go)
9594
* [Sorts Test](https://github.com/TheAlgorithms/Go/blob/master/sorts/sorts_test.go)
96-
* [Topological Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/topological_sort.go)
95+
* [Sorts Testcases](https://github.com/TheAlgorithms/Go/blob/master/sorts/sorts_testcases.go)
96+
* [Topologicalsort](https://github.com/TheAlgorithms/Go/blob/master/sorts/topologicalsort.go)
9797

9898
## Strings
9999
* Levenshteindistance

0 commit comments

Comments
 (0)