Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hi any help with this code In Java.. Im stuck and couldn't make it run Have to sort from largest to smallest within array Please

Hi any help with this code In Java.. Im stuck and couldn't make it run

image text in transcribed

image text in transcribed

Have to sort from largest to smallest within array Please help

Part 1 - In Class Complete Binary Tree Complete binary trees have a simple representation using arrays. The representation may use a fixed-size array so that the number of nodes in the tree is limited to the size of the array or can use an array that grows according to the number of nodes. 1. The root always appears in the [0) component of the array. 2. If the data for a non-root node is in location [il then the data for the parent is always at location [(i-1)/21 3, If the data for a node is in location [i] then its children (if they exist) will always have their data at these locations: a. Left child at component [21+1) b. Right child at component 12i+2) Consider the following complete binary tree: NeuTree 14 1 3 10 30 17 40 21 12 Create a class for complete binary trees using an array representation. You should include the following methods: A method to add the nodes of the tree to an array representation (remember that insertion into an array will be done using level order traversal!). A method to print out the tree in the correct order of an array representation. A method to print out each parent and its children. If the parent has no children the output should display that the parent does not have a child. 1. 2. 3. woys to do order/mar

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Management Databases And Organizations

Authors: Richard T. Watson

3rd Edition

0471418455, 978-0471418450

More Books

Students also viewed these Databases questions

Question

How to split screen on mac book?

Answered: 1 week ago

Question

How is the NDAA used to shape defense policies indirectly?

Answered: 1 week ago