Пример #1
0
        /// <summary>
        /// If the type parameter is <see cref="NoFlip"/>, nodes are iterated from the smallest
        /// to the largest key (left to right); if the parameter is <see cref="DoFlip"/>,
        /// nodes are iterated from the largest to the smallest key (right to left).
        /// </summary>
        internal bool SiftRecursive <T>(NodeTraversalActions <TKey, TValue, BinaryNode <TKey, TValue>, NodeTraversalAction> nodeActions)
            where T : FlipBase <T>
        {
            if (!nodeActions.InvokePreAction(this))
            {
                return(false);
            }

            if (GetLeftChild <T>() != null && !GetLeftChild <T>().SiftRecursive <T>(nodeActions))
            {
                return(false);
            }

            if (!nodeActions.InvokeInAction(this))
            {
                return(false);
            }

            if (GetRightChild <T>() != null && !GetRightChild <T>().SiftRecursive <T>(nodeActions))
            {
                return(false);
            }

            if (!nodeActions.InvokePostAction(this))
            {
                return(false);
            }

            return(true);
        }
Пример #2
0
        private bool HandleSift <T>(
            Stack <NodeTraversalToken <BinaryNode <TKey, TValue>, NodeTraversalAction> > stack,
            NodeTraversalActions <TKey, TValue, BinaryNode <TKey, TValue>, NodeTraversalAction> nodeActions)
            where T : FlipBase <T>
        {
            // First and only visit to this node
            if (!nodeActions.InvokePreAction(this))
            {
                return(false);
            }


            // Push actions in reverse order
            var right = GetRightChild <T>();
            var left  = GetLeftChild <T>();

            if (right != null)
            {
                if (nodeActions.HasPostAction)
                {
                    stack.Push(GetNodeTraversalToken(this, NodeTraversalAction.PostAction));
                }
                stack.Push(GetNodeTraversalToken(right, NodeTraversalAction.Sift));
            }
            else if (left != null && nodeActions.HasPostAction)
            {
                // We need to store the action (it has to be executed after sifting through Left)
                stack.Push(GetNodeTraversalToken(this, NodeTraversalAction.PostAction));
            }

            if (left != null)
            {
                if (nodeActions.HasInAction)
                {
                    stack.Push(GetNodeTraversalToken(this, NodeTraversalAction.InAction));
                }
                stack.Push(GetNodeTraversalToken(left, NodeTraversalAction.Sift));
            }
            else
            {
                // Handle missing children -- we can only invoke actions right away if children are null from left to right
                if (!nodeActions.InvokeInAction(this))
                {
                    return(false);
                }

                if (right == null)
                {
                    if (!nodeActions.InvokePostAction(this))
                    {
                        return(false);
                    }
                }
            }

            return(true);
        }
Пример #3
0
        private bool HandleSift(
            Stack <NodeTraversalToken <DisseminateNode <TKey, TValue>, NodeTraversalAction> > stack,
            NodeTraversalActions <TKey, TValue, DisseminateNode <TKey, TValue>, NodeTraversalAction> nodeActions,
            bool addSiblings)
        {
            // First and only visit to this node
            if (!nodeActions.InvokePreAction(this))
            {
                return(false);
            }


            // Push actions in reverse order
            // Push all siblings
            if (addSiblings && RightSibling != this)
            {
                foreach (var siblingNode in GetSiblingsReverse().Where(s => s != this))
                {
                    // Notify that when being sifted, don't try to add all siblings again
                    stack.Push(GetNodeTraversalToken((DisseminateNode <TKey, TValue>)siblingNode, NodeTraversalAction.SiftOnlySiblings));
                }
            }


            // Push the child
            if (FirstChild != null)
            {
                if (nodeActions.HasPostAction)
                {
                    stack.Push(GetNodeTraversalToken(this, NodeTraversalAction.PostAction));
                }

                stack.Push(GetNodeTraversalToken(FirstChild, NodeTraversalAction.Sift));
            }
            else if (!nodeActions.InvokePostAction(this)) // Handle missing children -- we can invoke actions right away
            {
                return(false);
            }

            return(true);
        }