コード例 #1
0
ファイル: Tree.cs プロジェクト: FerrariF70/Binary-Tree
 public void InsertNode(int insertValue)
 {
     if (root == null)
     {
         root = new TreeNode(insertValue);
     }
     else
     {
         root.Insert(insertValue);
     }
 }