Skip to content

Commit 5bc000a

Browse files
authored
Merge branch 'master' into features/dfs
2 parents cce3e59 + 004581d commit 5bc000a

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

README.md

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# TypeScript Algorithms and Data structures
2-
🔖 Algorithms and data structures implemented in TypeScript
2+
3+
![CI](https://github.com/FSou1/typescript-algorithms/workflows/CI/badge.svg?branch=master)
4+
5+
🔖 Algorithms and data structures implemented in TypeScript.
36

47
## Data structures
58

@@ -18,15 +21,15 @@ An algorithm is a finite sequence of well-defined, computer-implementable instru
1821
* [Peak Finder (1d version)](src/algorithms/search/peak-finder/1d) - find a peak in a one-dimensional array;
1922
* [Peak Finder (2d version)](src/algorithms/search/peak-finder/2d) - find a peak a two-dimensional array;
2023
* **String**
21-
* [Document distance](/src/algorithms/string/document-distance) - measure similarity between two strings;
24+
* [Document distance](src/algorithms/string/document-distance) - measure similarity between two strings;
2225
* **Sort**
23-
* [Insertion sort](/src/algorithms/sort/insertion/simple) - sort an array with a simple insertion algorithm;
24-
* [Merge sort](/src/algorithms/sort/merge) - sort an array with a merge sort algorithm;
25-
* [Heapsort](/src/algorithms/sort/heapsort) - sort an array with a heapsort algorithm;
26-
* [Counting sort](/src/algorithms/sort/counting) - sort an array with a counting sort algorithm;
27-
* [Radix sort](/src/algorithms/sort/radix) - sort an array with a radix sort algorithm;
26+
* [Insertion sort](src/algorithms/sort/insertion/simple) - sort an array with a simple insertion algorithm;
27+
* [Merge sort](src/algorithms/sort/merge) - sort an array with a merge sort algorithm;
28+
* [Heapsort](src/algorithms/sort/heapsort) - sort an array with a heapsort algorithm;
29+
* [Counting sort](src/algorithms/sort/counting) - sort an array with a counting sort algorithm;
30+
* [Radix sort](src/algorithms/sort/radix) - sort an array with a radix sort algorithm;
2831
* **Graph**
29-
* [Breadth-first search](/src/algorithms/graph/breadth-first-search) - traverse a graph, explore neighbor vertices first;
32+
* [Breadth-first search](src/algorithms/graph/breadth-first-search) - traverse a graph, explore neighbor vertices first;
3033

3134
## How to use this repository
3235

0 commit comments

Comments
 (0)