mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 16:12:42 +08:00
11 lines
115 B
Go
11 lines
115 B
Go
package rbtree
|
|
|
|
type color bool
|
|
|
|
const (
|
|
black, red color = true, false
|
|
)
|
|
|
|
type TreeNode[K any, V any] struct {
|
|
}
|