|
17 | 17 | * [Xor Cipher Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/xor/xor_cipher_test.go)
|
18 | 18 | * [Xorcipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/xor/xorCipher.go)
|
19 | 19 |
|
20 |
| -## Data-Structures |
| 20 | +## Datastructures |
21 | 21 | * 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) |
24 | 24 | * 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) |
32 | 31 | * 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) |
35 | 35 | * 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) |
38 | 38 |
|
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) |
46 | 46 |
|
47 | 47 | ## 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) |
49 | 51 |
|
50 | 52 | ## Math
|
51 | 53 | * 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) |
54 | 56 | * 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) |
57 | 59 | * 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) |
60 | 62 | * Pythagoras
|
61 | 63 | * [Pythagoras](https://github.com/TheAlgorithms/Go/blob/master/math/pythagoras/pythagoras.go)
|
62 | 64 | * [Pythagoras Test](https://github.com/TheAlgorithms/Go/blob/master/math/pythagoras/pythagoras_test.go)
|
63 | 65 | * Sieve
|
64 | 66 | * [Sieve](https://github.com/TheAlgorithms/Go/blob/master/math/sieve/Sieve.go)
|
65 | 67 |
|
66 | 68 | ## 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) |
68 | 70 | * Monte Carlo Pi
|
69 | 71 | * [Monte Carlo Pi](https://github.com/TheAlgorithms/Go/blob/master/other/monte_carlo_pi/monte_carlo_pi.go)
|
70 | 72 | * [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) |
73 | 75 | * [Prime Numbers](https://github.com/TheAlgorithms/Go/blob/master/other/prime_numbers.go)
|
74 | 76 | * [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) |
76 | 78 |
|
77 | 79 | ## 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) |
82 | 82 | * [Search Test](https://github.com/TheAlgorithms/Go/blob/master/searches/search_test.go)
|
83 | 83 |
|
84 | 84 | ## Sorts
|
85 | 85 | * [Bubblesort](https://github.com/TheAlgorithms/Go/blob/master/sorts/bubblesort.go)
|
86 | 86 | * [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) |
95 | 94 | * [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) |
97 | 97 |
|
98 | 98 | ## Strings
|
99 | 99 | * Levenshteindistance
|
|
0 commit comments