Java Program to Implement Threaded Binary Tree

This is a Java Program to implement Threaded Binary Tree. A threaded binary tree makes it possible to traverse the values in the binary tree via a linear traversal that is more rapid than a recursive in-order traversal. It is also possible to discover the parent of a node from a threaded binary tree, without explicit use of parent pointers or a stack, albeit slowly. This can be useful where stack space is limited, or where a stack of parent pointers is unavailable (for finding the parent pointer via DFS).

Here is the source code of the Java program to implement Threaded Binary Tree. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.

/**
 *    Java Program to Implement Threaded Binary Tree
 **/
 
import java.util.Scanner;
 
/** Class TBSTNode **/
class TBSTNode
{
    int ele;
    TBSTNode left, right;
    boolean leftThread, rightThread;
 
    /** Constructor **/
    public TBSTNode(int ele)
    {
        this(ele, null, null, true, true);
    }
 
    /** Constructor **/
    public TBSTNode(boolean leftThread, boolean rightThread)
    {
        this.ele = Integer.MAX_VALUE;
        this.left = this;
        this.right = this;
        this.leftThread = leftThread;
        this.rightThread = rightThread;
    }
 
    /** Constructor **/
    public TBSTNode(int ele, TBSTNode left, TBSTNode right, boolean leftThread, boolean rightThread)
    {
        this.ele = ele;
        this.left = left;
        this.right = right;
        this.leftThread = leftThread;
        this.rightThread = rightThread;
    }
}
 
/** Class ThreadedBinarySearchTree **/
class ThreadedBinarySearchTree
{
    private TBSTNode root;
 
    /** Constructor **/
    public ThreadedBinarySearchTree () 
    {
        root = new TBSTNode(true, false);      
    }
 
    /** Function to clear tree **/
    public void clear()
    {
        root = new TBSTNode(true, false);  
    }
 
    /** Function to insert an element **/
    public void insert(int ele) 
    {
        TBSTNode ptr = findNode(root, ele);
 
        /** element already present **/
        if (ptr == null)
            return;         
 
        if (ptr.ele < ele) 
        { 
            TBSTNode nptr = new TBSTNode(ele, ptr, ptr.right, true, true);            
            ptr.right = nptr;
            ptr.rightThread = false;
        }
        else
        {
            TBSTNode nptr = new TBSTNode(ele, ptr.left, ptr, true, true);         
            ptr.left = nptr;
            ptr.leftThread = false;
        }
    }
 
    /** function to find node **/
    public TBSTNode findNode(TBSTNode r, int ele)
    {
        if (r.ele < ele)
        {
            if (r.rightThread)
                return r;
            return findNode(r.right, ele);
        }
        else if (r.ele > ele)
        {
            if (r.leftThread)
                return r;
            return findNode(r.left, ele);
        }
        else
            return null;        
    }
 
    /** Function to search for an element **/
    public boolean search(int ele) 
    {
        return findNode(root, ele) == null;
    }
 
    /** Function to print tree **/
    public void inOrder() 
    {
        TBSTNode temp = root;
        for (;;)
        {
            temp = insucc(temp);
            if (temp == root)
                break;
            System.out.print(temp.ele +" ");
        }
    } 
 
    /** Function to get inorder successor **/
    public TBSTNode insucc(TBSTNode tree)
    {
        TBSTNode temp;
        temp = tree.right;
        if (!tree.rightThread)
            while (!temp.leftThread)
                temp = temp.left;
        return temp;
    }
}
 
/** Class ThreadedBinarySearchTreeTest **/
public class ThreadedBinarySearchTreeTest
{
    public static void main(String[] args)
    {                 
        Scanner scan = new Scanner(System.in);
        /** Creating object of ThreadedBinarySearchTree **/
        ThreadedBinarySearchTree tbst = new ThreadedBinarySearchTree(); 
        System.out.println("Threaded Binary Search Tree Test\n");          
        char ch;
        /**  Perform tree operations  **/
        do    
        {
            System.out.println("\nThreaded Binary Search Tree Operations\n");
            System.out.println("1. insert ");
            System.out.println("2. search");
            System.out.println("3. clear"); 
 
            int choice = scan.nextInt();            
            switch (choice)
            {
            case 1 : 
                System.out.println("Enter integer element to insert");
                tbst.insert( scan.nextInt() );                     
                break;                          
            case 2 : 
                System.out.println("Enter integer element to search");
                System.out.println("Search result : "+ tbst.search( scan.nextInt() ));
                break;       
            case 3 : 
                System.out.println("\nTree Cleared\n");
                tbst.clear();
                break;           
            default : 
                System.out.println("Wrong Entry \n ");
                break;   
            }
            /**  Display tree  **/ 
            System.out.print("\nTree = ");
            tbst.inOrder();            
            System.out.println();
 
            System.out.println("\nDo you want to continue (Type y or n) \n");
            ch = scan.next().charAt(0);                        
        } while (ch == 'Y'|| ch == 'y');               
    }
}
Threaded Binary Search Tree Test
 
 
Threaded Binary Search Tree Operations
 
1. insert
2. search
3. clear
1
Enter integer element to insert
28
 
Tree = 28
 
Do you want to continue (Type y or n)
 
y
 
Threaded Binary Search Tree Operations
 
1. insert
2. search
3. clear
1
Enter integer element to insert
5
 
Tree = 5 28
 
Do you want to continue (Type y or n)
 
y
 
Threaded Binary Search Tree Operations
 
1. insert
2. search
3. clear
1
Enter integer element to insert
19
 
Tree = 5 19 28
 
Do you want to continue (Type y or n)
 
y
 
Threaded Binary Search Tree Operations
 
1. insert
2. search
3. clear
1
Enter integer element to insert
63
 
Tree = 5 19 28 63
 
Do you want to continue (Type y or n)
 
y
 
Threaded Binary Search Tree Operations
 
1. insert
2. search
3. clear
1
Enter integer element to insert
14
 
Tree = 5 14 19 28 63
 
Do you want to continue (Type y or n)
 
y
 
Threaded Binary Search Tree Operations
 
1. insert
2. search
3. clear
1
Enter integer element to insert
7
 
Tree = 5 7 14 19 28 63
 
Do you want to continue (Type y or n)
 
y
 
Threaded Binary Search Tree Operations
 
1. insert
2. search
3. clear
1
Enter integer element to insert
70
 
Tree = 5 7 14 19 28 63 70
 
Do you want to continue (Type y or n)
 
y
 
Threaded Binary Search Tree Operations
 
1. insert
2. search
3. clear
2
Enter integer element to search
24
Search result : false
 
Tree = 5 7 14 19 28 63 70
 
Do you want to continue (Type y or n)
 
y
 
Threaded Binary Search Tree Operations
 
1. insert
2. search
3. clear
2
Enter integer element to search
28
Search result : true
 
Tree = 5 7 14 19 28 63 70
 
Do you want to continue (Type y or n)
 
y
 
Threaded Binary Search Tree Operations
 
1. insert
2. search
3. clear
2
Enter integer element to search
14
Search result : true
 
Tree = 5 7 14 19 28 63 70
 
Do you want to continue (Type y or n)
 
y
 
Threaded Binary Search Tree Operations
 
1. insert
2. search
3. clear
3
 
Tree Cleared
 
 
Tree =
 
Do you want to continue (Type y or n)
 
n

Related posts:

Guide to CountDownLatch in Java
Java 9 Stream API Improvements
Java Program to Give an Implementation of the Traditional Chinese Postman Problem
Java Program to Describe the Representation of Graph using Incidence List
Java Program to Find Number of Articulation points in a Graph
Spring Boot with Multiple SQL Import Files
Java Program to Implement LinkedBlockingDeque API
Java Program to Perform Naive String Matching
A Quick Guide to Spring Cloud Consul
Overflow and Underflow in Java
Spring Security and OpenID Connect
Annotation trong Java 8
Lập trình đa luồng với Callable và Future trong Java
REST Web service: Upload và Download file với Jersey 2.x
Feign – Tạo ứng dụng Java RESTful Client
Java Program to Generate All Pairs of Subsets Whose Union Make the Set
Java Program to Find a Good Feedback Vertex Set
Java Program to Find Second Smallest of n Elements with Given Complexity Constraint
Java Program to Generate All Possible Combinations Out of a, b, c, d, e
Convert String to Byte Array and Reverse in Java
Java Program to Perform Stooge Sort
Java Program to Solve a Matching Problem for a Given Specific Case
Java Optional as Return Type
Java Program to Perform the Unique Factorization of a Given Number
Thao tác với tập tin và thư mục trong Java
Introduction to Spring Cloud Stream
Java Program to Implement HashSet API
Implementing a Binary Tree in Java
Migrating from JUnit 4 to JUnit 5
Hướng dẫn Java Design Pattern – Proxy
A Guide to Queries in Spring Data MongoDB
Java Program to Implement the Schonhage-Strassen Algorithm for Multiplication of Two Numbers