Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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* Nane;
char* Surnane;
int Grade;
node* left;
; ;
node* right;
7 Sudent Graden tet - Notepad
The tan Fornat Vew Help
12256564 Ahlas Saleen 98
12259947 All Mabeel 75
12263632and Hasr191
12254543 Nadla 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.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions

Question

* What is the importance of soil testing in civil engineering?

Answered: 1 week ago

Question

Explain the concept of shear force and bending moment in beams.

Answered: 1 week ago