Beispiel #1
0
		/// <summary>
		/// Initializes a new instance of the BinTree class.
		/// </summary>
		public BinTree()
		{
			_root = new Root();
		}