UNPKG
flatten-red-black-tree
Version:
latest (0.0.1)
0.0.1
Red Black Tree
github.com/alexbol99/flatten-red-black-tree
alexbol99/flatten-red-black-tree
flatten-red-black-tree
/
utils
/
constants.js
10 lines
(8 loc)
•
144 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Created by Alex Bol on 3/28/2017. */
'use strict'
;
module
.
exports
= {
RB_TREE_COLOR_RED
:
0
,
RB_TREE_COLOR_BLACK
:
1
};