Exemple #1
0
        public bool isLeaf()
        {
            if (!isEmpty())
            {
                return(root.isLeaf(ref root));
            }

            return(true);
        }