All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.parboiled.trees.TreeUtils Maven / Gradle / Ivy

/*
 * Copyright (C) 2009-2011 Mathias Doenitz
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.parboiled.trees;

import static org.parboiled.common.Preconditions.*;

/**
 * General utility methods for operating on tree, i.e. graphs consisting of {@link TreeNode}s.
 */
public final class TreeUtils {

    private TreeUtils() {}

    /**
     * Returns the root of the tree the given node is part of.
     *
     * @param node the node to get the root of
     * @return the root or null if the given node is null
     */
    public static > T getRoot(T node) {
        if (node == null) return null;
        if (node.getParent() != null) return getRoot(node.getParent());
        return node;
    }

    /**
     * Adds a new child node to a given MutableTreeNode parent.
     *
     * @param parent the parent node
     * @param child  the child node to add
     */
    public static > void addChild(T parent, T child) {
        checkArgNotNull(parent, "parent");
        parent.addChild(parent.getChildren().size(), child);
    }

    /**
     * Removes the given child from the given parent node.
     *
     * @param parent the parent node
     * @param child  the child node
     */
    public static > void removeChild(T parent, T child) {
        checkArgNotNull(parent, "parent");
        int index = parent.getChildren().indexOf(child);
        checkElementIndex(index, parent.getChildren().size());
        parent.removeChild(index);
    }

    /**
     * Performs the following transformation on the given MutableBinaryTreeNode:
     * 
     *        o1                    o2
     *       / \                   / \
     *      A   o2     ====>     o1   C
     *         / \              / \
     *        B   C            A   B
     * 
* * @param node the node to transform * @return the new root after the transformation, which is either the right sub node of the original root * or the original root, if the right sub node is null */ public static > N toLeftAssociativity(N node) { checkArgNotNull(node, "node"); N right = node.right(); if (right == null) return node; node.setRight(right.left()); right.setLeft(node); return right; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy