Skip to content

Instantly share code, notes, and snippets.

@helabenkhalfallah
Created February 11, 2024 13:52
Show Gist options
  • Save helabenkhalfallah/1f68e86eb0390c28d9e97dc4e5c0bfaf to your computer and use it in GitHub Desktop.
Save helabenkhalfallah/1f68e86eb0390c28d9e97dc4e5c0bfaf to your computer and use it in GitHub Desktop.
RBTNode
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