diff --git a/algorithms/C/README.md b/algorithms/C/README.md index c304319f..25601f5f 100644 --- a/algorithms/C/README.md +++ b/algorithms/C/README.md @@ -5,9 +5,9 @@ - [Unique Elements in an array](arrays/unique-elements-in-an-array.c) ## Bit Manipulation -- [Add and Subtract](bit-manipulation/add-and-sub-bitwise) -- [Multiply](bit-manipulation/multiply-bitwise) -- [divide](bit-manipulation/divide-bitwise) +- [Add and Subtract](bit-manipulation/add-and-sub-bitwise.c) +- [Multiply](bit-manipulation/multiply-bitwise.c) +- [Divide bitwise](bit-manipulation/divide-bitwise.c) ## Graphs - [Prim's Algorithm](graphs/Prim's-algorithm.c) diff --git a/algorithms/CPlusPlus/README.md b/algorithms/CPlusPlus/README.md index fdeb88cd..4787c9c6 100644 --- a/algorithms/CPlusPlus/README.md +++ b/algorithms/CPlusPlus/README.md @@ -18,12 +18,12 @@ 1. [Longest Common Subsequence](Dynamic-Programming/longest-common-subsequence.cpp) 2. [Longest Common Substring](Dynamic-Programming/longest-common-substring.cpp) -3. [0/1-knapsack](Dynamic-Programming/01-knapsack-bottom-up.cpp) +3. [0/1-knapsack](Dynamic-Programming/01-knapsack.cpp) 4. [Matrix chain Multiplication](Dynamic-Programming/matrix-chain-multiplication.cpp) ## Graphs -1. [Bellman Ford Algorithm](Graphs/bellmam-ford.cpp) +1. [Bellman Ford Algorithm](Graphs/bellman-ford.cpp) 2. [kruskal Algorithm](Graphs/kruskal-algorithm.cpp) 3. [Breadth First Search](Graphs/breadth-first-search.cpp) 4. [Topological sort](Graphs/topological-sort.cpp) diff --git a/algorithms/Go/README.md b/algorithms/Go/README.md index 4d570459..b54aefa6 100644 --- a/algorithms/Go/README.md +++ b/algorithms/Go/README.md @@ -14,4 +14,8 @@ ## Sorting 1. [Bubble Sort](sorting/bubble-sort.go) 2. [Insertion Sort](sorting/insertion-sort.go) -3. [Quicksort](sorting/quicksort.go) \ No newline at end of file +3. [Quicksort](sorting/quicksort.go) + +## Recursion +1. [Fibonacci](recursion/fibonacci.go) + diff --git a/algorithms/JavaScript/README.md b/algorithms/JavaScript/README.md index a78c526a..990c2c62 100644 --- a/algorithms/JavaScript/README.md +++ b/algorithms/JavaScript/README.md @@ -4,8 +4,8 @@ 1. [Counting Inversions](src/arrays/counting-inversions.js) ## Linked Lists -1. [Singly](lsrc/inked_lists/singly.js) -1. [Doubly](lsrc/inked_lists/doubly.js) +1. [Singly](src/linked-lists/singly.js) +1. [Doubly](src/linked-lists/doubly.js) ## Searching diff --git a/algorithms/Python/README.md b/algorithms/Python/README.md index 14c42dba..33a2b650 100644 --- a/algorithms/Python/README.md +++ b/algorithms/Python/README.md @@ -40,7 +40,7 @@ 4. [Quicksort](sorting/quicksort.py) 5. [Selection Sort](sorting/selection_sort.py) 6. [Heap Sort](sorting/heap-sort.py) -7. [Radix Sort](sorting/radix-sort.py) +7. [Radix Sort](sorting/radix_sort.py) 8. [Shell Sort](sorting/shell-sort.py) 9. [Merge sort](sorting/merge_sort.py)