File tree 2 files changed +40
-29
lines changed
2 files changed +40
-29
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
+ 0.4.0 (2014-06-06)
4
+ * Sorting
5
+ * Selection Sort
6
+ * Radix Sort
7
+
8
+ * Graphs
9
+ * DFS
10
+ * Euler path
11
+
12
+ * String
13
+ * Knuth-Morris-Pratt
3
14
4
15
0.3.0 (2014-06-03)
5
16
* Math
6
- * * Square root by Newton's method
17
+ * Square root by Newton's method
7
18
8
19
* Data Structures
9
- * * Hash table
20
+ * Hash table
10
21
11
22
* Sorting
12
- * * Insertion sort
13
- * * Heap sort
14
- * * Counting sort
23
+ * Insertion sort
24
+ * Heap sort
25
+ * Counting sort
15
26
16
27
0.2.0 (2014-06-01)
17
28
* Graphs
18
- * * Shortest Path Faster Algorithm (#34)
19
- * * Bellman-Ford Shortest Path (#36)
29
+ * Shortest Path Faster Algorithm (#34)
30
+ * Bellman-Ford Shortest Path (#36)
20
31
21
32
* Math
22
- * * Extended Euclidean Algorithm (#37)
33
+ * Extended Euclidean Algorithm (#37)
23
34
24
35
* Strings
25
- * * Karp-Rabin String Matching (#35)
36
+ * Karp-Rabin String Matching (#35)
26
37
27
38
28
39
0.1.0 (2014-05-30)
29
40
* Sorting
30
- * * Bubble Sort
31
- * * Quicksort
32
- * * Merge sort
41
+ * Bubble Sort
42
+ * Quicksort
43
+ * Merge sort
33
44
34
45
* Graphs
35
- * * Dijkstra
36
- * * Topological Sort
46
+ * Dijkstra
47
+ * Topological Sort
37
48
38
49
* Math
39
- * * Fibonacci
40
- * * Fisher-Yates
41
- * * Euclidean GCD
50
+ * Fibonacci
51
+ * Fisher-Yates
52
+ * Euclidean GCD
42
53
43
54
* Search
44
- * * Binary Search
45
- * * Breadth first search (for BSTs)
46
- * * Depth first search (for BSTs)
55
+ * Binary Search
56
+ * Breadth first search (for BSTs)
57
+ * Depth first search (for BSTs)
47
58
48
59
* String
49
- * * Levenshtein edit distance
60
+ * Levenshtein edit distance
50
61
51
62
* Data Structures
52
- * * Binary Search Tree
53
- * * Graph
54
- * * Heap
55
- * * Linked list
56
- * * Priority Queue
57
- * * Queue
58
- * * Stack
63
+ * Binary Search Tree
64
+ * Graph
65
+ * Heap
66
+ * Linked list
67
+ * Priority Queue
68
+ * Queue
69
+ * Stack
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " algorithms" ,
3
- "version" : " 0.3 .0" ,
3
+ "version" : " 0.4 .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