logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Bhargav AppasaniiEngineering
(/5)

552 Answers

Hire Me
expert
Nagendra Singh ChauhanMathematics
(/5)

986 Answers

Hire Me
expert
Timothy PriceeResume writing
(5/5)

686 Answers

Hire Me
expert
Carlos HowardComputer science
(5/5)

850 Answers

Hire Me
C Programming

Create a binary tree using the “adventure.txt” file. You must create new nodes and form the binary tree using a recursive function

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Programming Assignment

1) Create a binary tree using the “adventure.txt” file. You must create new nodes and form the binary tree using a recursive function. The structure for each node should look like:

struct node

{

    char data[200];

    int choice;

    struct node *parent;

    struct node *left;

    struct node * right;

};

The way that the file is formatted is that the first sentence is the data for the root of the binary tree, the following sentence will be the data for the left child, then it will continue this pattern until you find a sentence that starts with “E”. When that is found then that will become the data for the left child external node. Then the next line will be the data for the right child of the current node. If you enumerate i.e. the first line is 1, the second is 2, etc. the lines in the file of “adventure.txt” the resulting binary tree will have this structure.

2) Make a function that will allow you to “play” through the adventure by making a choice at each internal node. (Hint: This means you will have to traverse the binary tree based on the input from the user)

3) Once an external node is reached print out the path that was taken to get there, i.e. print the data of the ancestor nodes of the external node.

 

Deliverables:

Upload your program onto blackboard as a “{first_name}_{last_name}_a5.c” file and make sure that it compiles using gcc. Be sure that your program follows the exact specifications, or you will lose points. Also, your code must be well commented with a comment at the beginning of your file that contains your name, ID number and the course (EE 2372). The format should look like this:

My Name

ID Number

EE 2372

Point Distribution:

Follows the naming specification/Good comments (5%)

Functionality/Following Program Specifications (45%)

Demo (50%)

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme