Created
February 11, 2024 13:52
-
-
Save helabenkhalfallah/1f68e86eb0390c28d9e97dc4e5c0bfaf to your computer and use it in GitHub Desktop.
RBTNode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const NodeColor = { | |
RED: 'RED', | |
BLACK: 'BLACK', | |
} | |
class RBTNode { | |
constructor(value, parent = null) { | |
this.value = value | |
this.left = null | |
this.right = null | |
this.parent = parent | |
this.color = NodeColor.RED | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment