Purchase Solution

Build and show a binary tree based on the following names

Not what you're looking for?

Ask Custom Question

The Binary Tree is one of the best ways to organize data when you need fast access. For this assignment, we will organize a list of names and perform various operations on those names. Build and show a binary tree based on the following names inserted into the binary tree in order listed: John, Eddie, Kim, Derrick, Ethan, Lonny, Mark, Curly, Donny, Nancy, Patricia, Oscar.

Show the order to names for a preorder traversal
Show the order to names for a postorder traversal
Show the order to names for a inorder traversal

Is this tree balanced? Why or why not?

How would the tree need to look for it to be more balanced if it is not?

If we deleted Eddie from the tree, what would the new tree look like (use one of the current names to replace Eddie and the tree redone)?

Purchase this Solution

Solution Summary

This solution shows how to build and balance a binary tree with a given set of names.

Solution Preview

** Please see the attachment for the complete solution response **

A tree is balanced if its left subtree and right subtree have the same height. From the picture you can see that the left subtree has height 3 and the right subtree has height 6. So it is not ...

Purchase this Solution


Free BrainMass Quizzes
C++ Operators

This quiz tests a student's knowledge about C++ operators.

Excel Introductory Quiz

This quiz tests your knowledge of basics of MS-Excel.

Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.

Basic Networking Questions

This quiz consists of some basic networking questions.

Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.