Skip to content

Commit 495b456

Browse files
author
Felipe Ribeiro
committed
v0.2.0 Changelog and package version bump
1 parent 568ce00 commit 495b456

File tree

2 files changed

+47
-1
lines changed

2 files changed

+47
-1
lines changed

CHANGELOG

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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

package.json

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

0 commit comments

Comments
 (0)