Javatpoint Logo
Javatpoint Logo

Java program to create a doubly linked list from a ternary tree

In this program, the given ternary tree will be converted into a corresponding doubly linked list.

The ternary tree is a hierarchical data structure in which each node can have at most three children. This can be accomplished by traversing the ternary tree in a pre-order fashion that is, root -> left child -> middle child -> right child. First, traverse root node and add it to the list. Then, add its left, middle and right sub-trees respectively.

Ternary tree:

Java program to create a doubly linked list from a ternary tree

Corresponding doubly linked list:

Java program to create a doubly linked list from a ternary tree

Algorithm

  • Define a Node class which represents a node in the ternary tree. It will have four properties: data, left, middle, right where left, middle and right represent three children of a node.
  • Root will represent the root of the ternary tree. Head and tail node represent the head and tail of the doubly linked list.
  • convertTernaryToDLL() will convert the given ternary tree to corresponding doubly linked list.
    • Nodes left, middle and right represent the child of given node.
    • If the node is not null, then the node will be inserted into the list.
    • If the list is empty, both head and tail will point to a node.
    • If the list is not empty then, the node will be inserted at the end of the list. Here, pointer left, and right will represent the previous and next pointer of the doubly linked list. The middle will not point to anything hence, simply set it to null.
    • When a node is successfully added into the list then, call convertTernaryToDLL() recursively to add a left, middle and right child of given node to the list.

a. displayDLL() will show all the nodes present in the list.

  • Define a new node 'current' that will point to the head.
  • Print current.data till current points to null.
  • Current will point to the next node in the list in each iteration.

Program:

Output:

Nodes of generated doubly linked list: 
5 10 20 40 50 12 24 36 48 15 30 45 60 
Next TopicJava Programs





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA