Inheritance: ICSnziNode
Ejemplo n.º 1
0
        public CSnzi()
        {
            leafs = new CSnziLeafNode[LeafCount];
            root  = new CSnziRootNode();

            for (int i = 0; i < leafs.Length; i++)
            {
                leafs[i] = new CSnziLeafNode(root);
            }
        }
Ejemplo n.º 2
0
		public CSnzi ()
		{
			leafs = new CSnziLeafNode[LeafCount];
			root = new CSnziRootNode ();
			
			for (int i = 0; i < leafs.Length; i++) {
				leafs[i] = new CSnziLeafNode (root);
			}
		}
Ejemplo n.º 3
0
        public QueryReturn Query()
        {
            CSnziRootNode copy = root;

            return(new QueryReturn(copy.Count > 0, copy.State == CSnziState.Open));
        }