The language is Java. Given my code, I want to make my output look like the first part of the first image's output, but with the numbers in my output. The other two pictures are of my code. I want to make the output look like a tree, as opposed to being close together like that. Thanks.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

The language is Java. Given my code, I want to make my output look like the first part of the first image's output, but with the numbers in my output. The other two pictures are of my code. I want to make the output look like a tree, as opposed to being close together like that. Thanks.

example output I
would like mine to
look like
8
9
Node(int data) {
// A class to store a binary tree node
class Node
int data;
Node left = null, right = null;
this.data = data;
class Main
2
if (root == null) {
return;
10
{L
5
System.out.print(root.data + " ");
preorder(root.left);
preorder(root.right);
if (root == null) {
return;
J
11
// Function to perform preorder traversal on a given binary tree
public static void preorder(Node root)
6
12
first part of my code
// Utility function to swap left subtree with right subtree
public static void swap(Node root)
3
13
14
Transcribed Image Text:example output I would like mine to look like 8 9 Node(int data) { // A class to store a binary tree node class Node int data; Node left = null, right = null; this.data = data; class Main 2 if (root == null) { return; 10 {L 5 System.out.print(root.data + " "); preorder(root.left); preorder(root.right); if (root == null) { return; J 11 // Function to perform preorder traversal on a given binary tree public static void preorder(Node root) 6 12 first part of my code // Utility function to swap left subtree with right subtree public static void swap(Node root) 3 13 14
Node temp = root.left;
root.left=root.right;
root.right = temp;
// Function to invert a given binary tree using preorder traversal
public static void invertBinary Tree (Node root)
{[
// base case: if the tree is empty
if (root == null) {
return;
// swap left subtree with right subtree
swap(root);
// invert left subtree
invertBinaryTree (root.left);
// invert right subtree
invertBinaryTree(root.right);
public static void main(String[] args)
/* Construct the following tree
Node root = new Node(4);
root.left = new Node(2);
root.right = new Node(7);
root.left.left = new Node(1);
root.left.right = new Node(3);
root.right.left = new Node(6);
root.right.right = new Node(9);
invertBinaryTree(root);
preorder(root);
Transcribed Image Text:Node temp = root.left; root.left=root.right; root.right = temp; // Function to invert a given binary tree using preorder traversal public static void invertBinary Tree (Node root) {[ // base case: if the tree is empty if (root == null) { return; // swap left subtree with right subtree swap(root); // invert left subtree invertBinaryTree (root.left); // invert right subtree invertBinaryTree(root.right); public static void main(String[] args) /* Construct the following tree Node root = new Node(4); root.left = new Node(2); root.right = new Node(7); root.left.left = new Node(1); root.left.right = new Node(3); root.right.left = new Node(6); root.right.right = new Node(9); invertBinaryTree(root); preorder(root);
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Processes of 3D Graphics
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education