コード例 #1
0
ファイル: BinarySearchTree.cs プロジェクト: bfdes/Collections
 private static int Size(Node node) => node == null ? 0 : node.size;