1
1
# 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.
3
6
4
7
## Data structures
5
8
@@ -18,15 +21,15 @@ An algorithm is a finite sequence of well-defined, computer-implementable instru
18
21
* [ Peak Finder (1d version)] ( src/algorithms/search/peak-finder/1d ) - find a peak in a one-dimensional array;
19
22
* [ Peak Finder (2d version)] ( src/algorithms/search/peak-finder/2d ) - find a peak a two-dimensional array;
20
23
* ** 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;
22
25
* ** 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;
28
31
* ** 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;
30
33
31
34
## How to use this repository
32
35
0 commit comments