예제 #1
0
 public static IBinaryNode GetPrevious(this IBinaryNode current) => current.GetNeighborNode(true);
예제 #2
0
 public static IBinaryNode GetNext(this IBinaryNode current) => current.GetNeighborNode(false);