Skip to content

Commit 5a6129b

Browse files
committed
v0.4.0 Selection Sort, Radix Sort, DFS, Euler path, Knuth-Morris-Pratt
1 parent 10fdeb4 commit 5a6129b

File tree

2 files changed

+40
-29
lines changed

2 files changed

+40
-29
lines changed

CHANGELOG

+39-28
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,69 @@
11
CHANGELOG
22
=========
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
314

415
0.3.0 (2014-06-03)
516
* Math
6-
** Square root by Newton's method
17+
* Square root by Newton's method
718

819
* Data Structures
9-
** Hash table
20+
* Hash table
1021

1122
* Sorting
12-
** Insertion sort
13-
** Heap sort
14-
** Counting sort
23+
* Insertion sort
24+
* Heap sort
25+
* Counting sort
1526

1627
0.2.0 (2014-06-01)
1728
* 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)
2031

2132
* Math
22-
** Extended Euclidean Algorithm (#37)
33+
* Extended Euclidean Algorithm (#37)
2334

2435
* Strings
25-
** Karp-Rabin String Matching (#35)
36+
* Karp-Rabin String Matching (#35)
2637

2738

2839
0.1.0 (2014-05-30)
2940
* Sorting
30-
** Bubble Sort
31-
** Quicksort
32-
** Merge sort
41+
* Bubble Sort
42+
* Quicksort
43+
* Merge sort
3344

3445
* Graphs
35-
** Dijkstra
36-
** Topological Sort
46+
* Dijkstra
47+
* Topological Sort
3748

3849
* Math
39-
** Fibonacci
40-
** Fisher-Yates
41-
** Euclidean GCD
50+
* Fibonacci
51+
* Fisher-Yates
52+
* Euclidean GCD
4253

4354
* 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)
4758

4859
* String
49-
** Levenshtein edit distance
60+
* Levenshtein edit distance
5061

5162
* 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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algorithms",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "Traditional computer science algorithms and data structures implemented in JavaScript",
55
"directories": {
66
"test": "test"

0 commit comments

Comments
 (0)