Skip to content

Commit fac2dba

Browse files
github-actionsgithub-actions
authored andcommitted
updating DIRECTORY.md
1 parent 75cf3a0 commit fac2dba

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

DIRECTORY.md

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
11

22
## Ciphers
3-
* [Caesarcipher](https://github.com/TheAlgorithms/C/blob/master/ciphers/CaesarCipher.go)
3+
* [Caesarcipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/CaesarCipher.go)
44

55
## Data-Structures
66
* Binary-Tree
7-
* [Binary-Search-Tree](https://github.com/TheAlgorithms/C/blob/master/data-structures/binary-tree/binary-search-tree.go)
8-
* [Binary-Tree](https://github.com/TheAlgorithms/C/blob/master/data-structures/binary-tree/binary-tree.go)
7+
* [Binary-Search-Tree](https://github.com/TheAlgorithms/Go/blob/master/data-structures/binary-tree/binary-search-tree.go)
8+
* [Binary-Tree](https://github.com/TheAlgorithms/Go/blob/master/data-structures/binary-tree/binary-tree.go)
99
* Linked-List
10-
* [Double-Linkedlist](https://github.com/TheAlgorithms/C/blob/master/data-structures/linked-list/double-linkedlist.go)
11-
* [Linkedlist](https://github.com/TheAlgorithms/C/blob/master/data-structures/linked-list/Linkedlist.go)
12-
* [Single-Linkedlist](https://github.com/TheAlgorithms/C/blob/master/data-structures/linked-list/single-linkedlist.go)
10+
* [Double-Linkedlist](https://github.com/TheAlgorithms/Go/blob/master/data-structures/linked-list/double-linkedlist.go)
11+
* [Linkedlist](https://github.com/TheAlgorithms/Go/blob/master/data-structures/linked-list/Linkedlist.go)
12+
* [Single-Linkedlist](https://github.com/TheAlgorithms/Go/blob/master/data-structures/linked-list/single-linkedlist.go)
1313
* Trie
14-
* [Trie](https://github.com/TheAlgorithms/C/blob/master/data-structures/trie/trie.go)
15-
* [Trie Test](https://github.com/TheAlgorithms/C/blob/master/data-structures/trie/trie_test.go)
14+
* [Trie](https://github.com/TheAlgorithms/Go/blob/master/data-structures/trie/trie.go)
15+
* [Trie Test](https://github.com/TheAlgorithms/Go/blob/master/data-structures/trie/trie_test.go)
1616

1717
## Dynamic-Programming
18-
* [Longest-Palindromic-Subsequence](https://github.com/TheAlgorithms/C/blob/master/dynamic-programming/longest-palindromic-subsequence.go)
19-
* [Matrix-Multiplication](https://github.com/TheAlgorithms/C/blob/master/dynamic-programming/matrix-multiplication.go)
20-
* [Rod-Cutting](https://github.com/TheAlgorithms/C/blob/master/dynamic-programming/rod-cutting.go)
18+
* [Longest-Palindromic-Subsequence](https://github.com/TheAlgorithms/Go/blob/master/dynamic-programming/longest-palindromic-subsequence.go)
19+
* [Matrix-Multiplication](https://github.com/TheAlgorithms/Go/blob/master/dynamic-programming/matrix-multiplication.go)
20+
* [Rod-Cutting](https://github.com/TheAlgorithms/Go/blob/master/dynamic-programming/rod-cutting.go)
2121

2222
## Other
23-
* [Maxsubarraysum](https://github.com/TheAlgorithms/C/blob/master/other/maxSubarraySum.go)
24-
* [Nestedbrackets](https://github.com/TheAlgorithms/C/blob/master/other/NestedBrackets.go)
25-
* [Passwordgenerator](https://github.com/TheAlgorithms/C/blob/master/other/PasswordGenerator.go)
26-
* [Prime Numbers](https://github.com/TheAlgorithms/C/blob/master/other/prime_numbers.go)
27-
* [Primenumbers](https://github.com/TheAlgorithms/C/blob/master/other/PrimeNumbers.go)
28-
* [String Combinations](https://github.com/TheAlgorithms/C/blob/master/other/string_combinations.go)
23+
* [Maxsubarraysum](https://github.com/TheAlgorithms/Go/blob/master/other/maxSubarraySum.go)
24+
* [Nestedbrackets](https://github.com/TheAlgorithms/Go/blob/master/other/NestedBrackets.go)
25+
* [Passwordgenerator](https://github.com/TheAlgorithms/Go/blob/master/other/PasswordGenerator.go)
26+
* [Prime Numbers](https://github.com/TheAlgorithms/Go/blob/master/other/prime_numbers.go)
27+
* [Primenumbers](https://github.com/TheAlgorithms/Go/blob/master/other/PrimeNumbers.go)
28+
* [String Combinations](https://github.com/TheAlgorithms/Go/blob/master/other/string_combinations.go)
2929

3030
## Searches
31-
* [Binary Search](https://github.com/TheAlgorithms/C/blob/master/searches/binary_search.go)
32-
* [Linear Search](https://github.com/TheAlgorithms/C/blob/master/searches/linear_search.go)
31+
* [Binary Search](https://github.com/TheAlgorithms/Go/blob/master/searches/binary_search.go)
32+
* [Linear Search](https://github.com/TheAlgorithms/Go/blob/master/searches/linear_search.go)
3333

3434
## Sorts
35-
* [Bubble Sort](https://github.com/TheAlgorithms/C/blob/master/sorts/bubble_sort.go)
36-
* [Heap Sort](https://github.com/TheAlgorithms/C/blob/master/sorts/heap_sort.go)
37-
* [Insertion Sort](https://github.com/TheAlgorithms/C/blob/master/sorts/insertion_sort.go)
38-
* [Merge Sort](https://github.com/TheAlgorithms/C/blob/master/sorts/merge_sort.go)
39-
* [Quick Sort](https://github.com/TheAlgorithms/C/blob/master/sorts/quick_sort.go)
40-
* [Selection Sort](https://github.com/TheAlgorithms/C/blob/master/sorts/selection_sort.go)
41-
* [Shell Sort](https://github.com/TheAlgorithms/C/blob/master/sorts/shell_sort.go)
42-
* [Sorts Case Test](https://github.com/TheAlgorithms/C/blob/master/sorts/sorts_case_test.go)
43-
* [Sorts Test](https://github.com/TheAlgorithms/C/blob/master/sorts/sorts_test.go)
44-
* [Topological Sort](https://github.com/TheAlgorithms/C/blob/master/sorts/topological_sort.go)
35+
* [Bubble Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/bubble_sort.go)
36+
* [Heap Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/heap_sort.go)
37+
* [Insertion Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/insertion_sort.go)
38+
* [Merge Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/merge_sort.go)
39+
* [Quick Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/quick_sort.go)
40+
* [Selection Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/selection_sort.go)
41+
* [Shell Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/shell_sort.go)
42+
* [Sorts Case Test](https://github.com/TheAlgorithms/Go/blob/master/sorts/sorts_case_test.go)
43+
* [Sorts Test](https://github.com/TheAlgorithms/Go/blob/master/sorts/sorts_test.go)
44+
* [Topological Sort](https://github.com/TheAlgorithms/Go/blob/master/sorts/topological_sort.go)
4545

4646
## Strings
47-
* [Naivestringsearch](https://github.com/TheAlgorithms/C/blob/master/strings/naiveStringSearch.go)
47+
* [Naivestringsearch](https://github.com/TheAlgorithms/Go/blob/master/strings/naiveStringSearch.go)

0 commit comments

Comments
 (0)