@@ -10,23 +10,22 @@ the data structure that work for storing your data.
1010
1111Supported data structures
1212-------------------------
13- - [ Stack]
14- - [ Queue]
15- - [ Priority Queue]
16- - [ Circular Buffer]
17- - [ Hash Table]
18- - [ Linked List]
19- - [ Double Linked List]
20- - [ Binary Search Tree]
21- - [ Red-Black Tree]
22- - [ Red-Black Tree List]
23- - [ B-Tree]
24- - [ Set]
13+ - [ Stack] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/Stack.html )
14+ - [ Queue] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/Queue.html )
15+ - [ Priority Queue] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/PriorityQueue.html )
16+ - [ Circular Buffer] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/CircularBuffer.html )
17+ - [ Hash Table] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/HashTable.html )
18+ - [ Linked List] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/LinkedList.html )
19+ - [ Double Linked List] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/DoubleLinkedList.html )
20+ - [ Binary Search Tree] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/BSTree.html )
21+ - [ Red-Black Tree] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/RBTree.html )
22+ - [ Red-Black Tree List] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/RBTreeList.html )
23+ - [ B-Tree] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/BTree.html )
24+ - [ Set] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/symbols/Set.html )
2525
2626How to use
2727----------
28- 1 . Download the minimized library [ here] (https://github
29- .com/Bishop92/JavaScript-Data-Structures/blob/master/DataStructuresMinimized.js);
28+ 1 . Download the minimized library [ here] ( https://github.com/Bishop92/JavaScript-Data-Structures/blob/master/DataStructuresMinimized.js ) ;
3029
31302 . Include the file in your project;
3231
@@ -45,7 +44,8 @@ listA.toArray(); // [0, 1, 2, 3]
4544
4645Documentation
4746-------------
48- Follow this [ link] ( ) to read the full documentation.
47+ Follow this [ link] ( https://github.com/Bishop92/JavaScript-Data-Structures/wiki ) to read the full documentation.
48+ Follow this [ link] ( https://rawgit.com/Bishop92/JavaScript-Data-Structures/master/doc/files.html ) to read the JSDoc.
4949
5050History
5151-------
0 commit comments