@@ -60,7 +60,7 @@ <h1 class="page-title">Source: data-structures/interval-tree.js</h1>
6060 * @param {Node} left Left child node.
6161 * @param {Node} right Right child node.
6262 */
63- exports.Node = function(start, end, left, right) {
63+ exports.Node = function (start, end, left, right) {
6464 /**
6565 * Node interval.
6666 * @member {Array}
@@ -74,7 +74,7 @@ <h1 class="page-title">Source: data-structures/interval-tree.js</h1>
7474 /**
7575 * Parent node.
7676 * @member {Node}
77- */
77+ */
7878 this.parentNode = null;
7979 /**
8080 * Left child node.
@@ -94,7 +94,7 @@ <h1 class="page-title">Source: data-structures/interval-tree.js</h1>
9494 * @public
9595 * @constructor
9696 */
97- exports.IntervalTree = function() {
97+ exports.IntervalTree = function () {
9898 /**
9999 * Root node of the tree.
100100 * @member {Node}
@@ -323,7 +323,7 @@ <h1 class="page-title">Source: data-structures/interval-tree.js</h1>
323323
324324 /**
325325 * Remove interval from the tree.
326- *
326+ *
327327 * @public
328328 * @method
329329 * @param {Array} intreval Array with start and end of the interval.
@@ -332,7 +332,8 @@ <h1 class="page-title">Source: data-structures/interval-tree.js</h1>
332332 return this._removeHelper(interval, this.root);
333333 };
334334
335- })(typeof window === 'undefined' ? module.exports : window);</ code > </ pre >
335+ })(typeof window === 'undefined' ? module.exports : window);
336+ </ code > </ pre >
336337 </ article >
337338 </ section >
338339
@@ -342,13 +343,13 @@ <h1 class="page-title">Source: data-structures/interval-tree.js</h1>
342343</ div >
343344
344345< nav >
345- < h2 > < a href ="index.html "> Home</ a > </ h2 > < h3 > Modules</ h3 > < ul > < li > < a href ="module-data-structures_binary-search-tree.html "> data-structures/binary-search-tree</ a > </ li > < li > < a href ="module-data-structures_heap.html "> data-structures/heap</ a > </ li > < li > < a href ="module-data-structures_interval-tree.html "> data-structures/interval-tree</ a > </ li > < li > < a href ="module-data-structures_linked-list.html "> data-structures/linked-list</ a > </ li > < li > < a href ="module-data-structures_red-black-tree.html "> data-structures/red-black-tree</ a > </ li > < li > < a href ="module-graphs_others_topological-sort.html "> graphs/others/topological-sort</ a > </ li > < li > < a href ="module-graphs_searching_bfs.html "> graphs/searching/bfs</ a > </ li > < li > < a href ="module-graphs_searching_dfs.html "> graphs/searching/dfs</ a > </ li > < li > < a href ="module-graphs_shortest-path_bellman-ford.html "> graphs/shortest-path/bellman-ford</ a > </ li > < li > < a href ="module-graphs_shortest-path_dijkstra.html "> graphs/shortest-path/dijkstra</ a > </ li > < li > < a href ="module-graphs_shortest-path_floyd-warshall.html "> graphs/shortest-path/floyd-warshall</ a > </ li > < li > < a href ="module-graphs_spanning-trees_prim.html "> graphs/spanning-trees/prim</ a > </ li > </ ul > < h3 > Classes</ h3 > < ul > < li > < a href ="module-data-structures_binary-search-tree.BinaryTree.html "> BinaryTree</ a > </ li > < li > < a href ="module-data-structures_binary-search-tree.Node.html "> Node</ a > </ li > < li > < a href ="module-data-structures_heap.Heap.html "> Heap</ a > </ li > < li > < a href ="module-data-structures_interval-tree.IntervalTree.html "> IntervalTree</ a > </ li > < li > < a href ="module-data-structures_interval-tree.Node.html "> Node</ a > </ li > < li > < a href ="module-data-structures_linked-list.LinkedList.html "> LinkedList</ a > </ li > < li > < a href ="module-data-structures_linked-list.Node.html "> Node</ a > </ li > < li > < a href ="module-data-structures_red-black-tree.RBTree.html "> RBTree</ a > </ li > < li > < a href ="module-graphs_shortest-path_bellman-ford.Edge.html "> Edge</ a > </ li > < li > < a href ="module-graphs_spanning-trees_prim.Edge.html "> Edge</ a > </ li > < li > < a href ="module-graphs_spanning-trees_prim.Graph.html "> Graph</ a > </ li > < li > < a href ="module-graphs_spanning-trees_prim.Vertex.html "> Vertex</ a > </ li > </ ul >
346+ < h2 > < a href ="index.html "> Home</ a > </ h2 > < h3 > Modules</ h3 > < ul > < li > < a href ="module-data-structures_binary-search-tree.html "> data-structures/binary-search-tree</ a > </ li > < li > < a href ="module-data-structures_heap.html "> data-structures/heap</ a > </ li > < li > < a href ="module-data-structures_interval-tree.html "> data-structures/interval-tree</ a > </ li > < li > < a href ="module-data-structures_linked-list.html "> data-structures/linked-list</ a > </ li > < li > < a href ="module-data-structures_red-black-tree.html "> data-structures/red-black-tree</ a > </ li > < li > < a href ="module-graphs_others_topological-sort.html "> graphs/others/topological-sort</ a > </ li > < li > < a href ="module-graphs_searching_bfs.html "> graphs/searching/bfs</ a > </ li > < li > < a href ="module-graphs_searching_dfs.html "> graphs/searching/dfs</ a > </ li > < li > < a href ="module-graphs_shortest-path_bellman-ford.html "> graphs/shortest-path/bellman-ford</ a > </ li > < li > < a href ="module-graphs_shortest-path_dijkstra.html "> graphs/shortest-path/dijkstra</ a > </ li > < li > < a href ="module-graphs_shortest-path_floyd-warshall.html "> graphs/shortest-path/floyd-warshall</ a > </ li > < li > < a href ="module-graphs_spanning-trees_prim.html "> graphs/spanning-trees/prim</ a > </ li > < li > < a href ="module-primes_is-prime.html "> primes/is-prime</ a > </ li > < li > < a href ="module-primes_prime-factor-tree.html "> primes/prime-factor-tree</ a > </ li > < li > < a href ="module-primes_sieve-of-eratosthenes.html "> primes/sieve-of-eratosthenes</ a > </ li > </ ul > < h3 > Classes</ h3 > < ul > < li > < a href ="module-data-structures_binary-search-tree.BinaryTree.html "> BinaryTree</ a > </ li > < li > < a href ="module-data-structures_binary-search-tree.Node.html "> Node</ a > </ li > < li > < a href ="module-data-structures_heap.Heap.html "> Heap</ a > </ li > < li > < a href ="module-data-structures_interval-tree.IntervalTree.html "> IntervalTree</ a > </ li > < li > < a href ="module-data-structures_interval-tree.Node.html "> Node</ a > </ li > < li > < a href ="module-data-structures_linked-list.LinkedList.html "> LinkedList</ a > </ li > < li > < a href ="module-data-structures_linked-list.Node.html "> Node</ a > </ li > < li > < a href ="module-data-structures_red-black-tree.RBTree.html "> RBTree</ a > </ li > < li > < a href ="module-graphs_shortest-path_bellman-ford.Edge.html "> Edge</ a > </ li > < li > < a href ="module-graphs_spanning-trees_prim.Edge.html "> Edge</ a > </ li > < li > < a href ="module-graphs_spanning-trees_prim.Graph.html "> Graph</ a > </ li > < li > < a href ="module-graphs_spanning-trees_prim.Vertex.html "> Vertex</ a > </ li > </ ul >
346347</ nav >
347348
348349< br class ="clear ">
349350
350351< footer >
351- Documentation generated by < a href ="https://github.com/jsdoc3/jsdoc "> JSDoc 3.3.0-alpha13</ a > on Sun Jan 11 2015 16:51:38 GMT+0200 (EET )
352+ Documentation generated by < a href ="https://github.com/jsdoc3/jsdoc "> JSDoc 3.3.0-alpha13</ a > on Sun Jan 11 2015 17:31:54 GMT+0100 (CET )
352353</ footer >
353354
354355< script > prettyPrint ( ) ; </ script >
0 commit comments