File tree 2 files changed +47
-1
lines changed
2 files changed +47
-1
lines changed Original file line number Diff line number Diff line change
1
+ CHANGELOG
2
+ =========
3
+
4
+ 0.2.0 (2014-06-01)
5
+ * Graphs
6
+ ** Shortest Path Faster Algorithm (#34)
7
+ ** Bellman-Ford Shortest Path (#36)
8
+
9
+ * Math
10
+ ** Extended Euclidean Algorithm (#37)
11
+
12
+ * Strings
13
+ ** Karp-Rabin String Matching (#35)
14
+
15
+
16
+ 0.1.0 (2014-05-30)
17
+ * Sorting
18
+ ** Bubble Sort
19
+ ** Quicksort
20
+ ** Merge sort
21
+
22
+ * Graphs
23
+ ** Dijkstra
24
+ ** Topological Sort
25
+
26
+ * Math
27
+ ** Fibonacci
28
+ ** Fisher-Yates
29
+ ** Euclidean GCD
30
+
31
+ * Search
32
+ ** Binary Search
33
+ ** Breadth first search (for BSTs)
34
+ ** Depth first search (for BSTs)
35
+
36
+ * String
37
+ ** Levenshtein edit distance
38
+
39
+ * Data Structures
40
+ ** Binary Search Tree
41
+ ** Graph
42
+ ** Heap
43
+ ** Linked list
44
+ ** Priority Queue
45
+ ** Queue
46
+ ** Stack
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " algorithms" ,
3
- "version" : " 0.1 .0" ,
3
+ "version" : " 0.2 .0" ,
4
4
"description" : " Traditional computer science algorithms and data structures implemented in JavaScript" ,
5
5
"directories" : {
6
6
"test" : " test"
You can’t perform that action at this time.
0 commit comments