protected static class BST.Node<K extends Comparable<K>,V> extends Object
B=52+K(类型字节)+V(类型字节)+对齐填充
K
key
BST.Node<K,V>
left
right
int
size
V
val
Node(K key, V val)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public K extends Comparable<K> key
public V val
public BST.Node<K extends Comparable<K>,V> left
public BST.Node<K extends Comparable<K>,V> right
public int size
public Node(K key, V val)
Copyright © 2022. All rights reserved.