Exemple #1
0
        public void Insert(T data)
        {
            if (_root == null)
            {
                _root = new Node <T>(data);
                return;
            }

            _root.Insert(data);
        }