guru_sdk/guru_app/packages/guru_utils/lib/collection/rbtree.dart

18 lines
304 B
Dart

/// Created by @Haoyi on 4/15/21
enum RBColor {
Red, Black
}
// class _LinkedRBEntry<K, V> {
// _LinkedRBEntry(this.key, this.value);
//
// K key;
// V value;
//
// RBColor _color;
// _LinkedRBEntry<K, V> _parent;
// _LinkedRBEntry<K, V>? _left;
// _LinkedRBEntry<K, V>? _right;
//
// }