Question: write c++ code In this assignment, you will write a C++ code to do the following: Write a program to process data for Computer Engineering

write c++ code
In this assignment, you will write a C++ code to do the following: Write a program to process data for Computer Engineering Students. The data should be loaded from a text file containing the following information for each student: Student ID, Student Name, Surname, and Grade in the Data Structure course. As the following: Your Node definition should be as follow: struct node \{ int ID; char* Name; char* Surname; int Grade; node* left; \}; node* right; 7 Student Gradestat - Notepad Hie tat format View Hetp 12256564 Ahlam Saleem a8 12258947 Ali nabeel 75 12263632 Rami Masri 91 12254543 Madia Sameer 71 Your program initially reads the file and creates a (Binary Search Tree) BST in which each node maintains a record of the file. The BST is arranged in terms of Student ID. As the following: - You should implement void buildTreeFromFile (char* filename) - You should implement an insert function based on ID. void insert(node* root, int ID, const char* Name, const char* Surname, int Grade) If the ID already exists in the tree, you should update the value - You should implement a search function. This function search for an ID in the binary search tree and return the associated value. node* search (node* root, int ID) - You should implement a delete function. This function delete a student from the BST depending on ID. void delete (node* root, int ID) - You should implement a function to print BST in-order. void printinorder (node* root) - You should implement a function to count the number of the students that grades lie within the range [80-90]. - You should implement a function to print the data of the students that have the top 5 grades
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
