Skip to content

Commit

Permalink
Merge 25ef9a6 into 26cbaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
DevAllTime authored Nov 8, 2017
2 parents 26cbaaa + 25ef9a6 commit 143ee4d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ require('algorithms').DataStructures;
* BST
* DisjointSetForest
* FenwickTree
* AVLTree
* Graph
* HashTable
* Heap
Expand All @@ -42,6 +43,7 @@ require('algorithms').DataStructures;
* Queue
* Set (HashSet)
* Stack
* Treap

#### Geometry algorithms

Expand All @@ -52,6 +54,7 @@ require('algorithms').Geometry;
```

* BezierCurve
* GrahamScan

#### Graph algorithms

Expand Down Expand Up @@ -113,6 +116,7 @@ require('algorithms').Search;
* inOrder (default)
* postOrder
* preOrder
* ternarySearch

#### Sorting algorithms

Expand All @@ -126,6 +130,7 @@ require('algorithms').Sorting;
* countingSort
* heapSort
* insertionSort
* mergeSortInit
* quicksort
* radixSort
* selectionSort
Expand Down
3 changes: 2 additions & 1 deletion src/geometry.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Geometry algorithms
module.exports = {
BezierCurve: require('./algorithms/geometry/bezier_curve')
BezierCurve: require('./algorithms/geometry/bezier_curve'),
GrahamScan: require('./algorithms/geometry/grahamScan')
};

0 comments on commit 143ee4d

Please sign in to comment.