In C++ Please Write a struct Student that has member variables: (string) first name, (int) age and (double) fee. Implement the Splay tree whose each node has data component an instance of the struct Student. Comparison of the nodes must be made with respect to age. Write the following functions along with necessary functions to: (i) search elements in the tree; (ii) insert nodes in the tree; (iii) print the tree in pre-order traversal fashion; (iv) delete a node from the tree; Implement the following (you can hardcode the inputs): (i) insert seven elements in the tree: (Kabeer, 19, 35.17), (John, 21, 31.65), (Paul, 25, 33.43), (Kaur, 18, 34.93), (Patel, 23, 36.37), (Alexander, 22, 33.78), (Ramesh, 27, 34.46); (ii) print the tree in pre-order fashion; (iii) delete an element from the tree (John, 21, 31.65); (iv) search an element (Alexander, 22, 33.78) in the tree; (v) print the tree in pre-order traversal fashion;

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 9PE
icon
Related questions
Question

In C++ Please

Write a struct Student that has member variables: (string) first name, (int) age and (double) fee. Implement the Splay tree whose each node has data component an instance of the struct Student. Comparison of the nodes must be made with respect to age. Write the following functions along with necessary functions to:

(i) search elements in the tree;

(ii) insert nodes in the tree;

(iii) print the tree in pre-order traversal fashion;

(iv) delete a node from the tree;

Implement the following (you can hardcode the inputs):

(i) insert seven elements in the tree: (Kabeer, 19, 35.17), (John, 21, 31.65), (Paul, 25, 33.43), (Kaur, 18, 34.93), (Patel, 23, 36.37), (Alexander, 22, 33.78), (Ramesh, 27, 34.46);

(ii) print the tree in pre-order fashion;

(iii) delete an element from the tree (John, 21, 31.65);

(iv) search an element (Alexander, 22, 33.78) in the tree;

(v) print the tree in pre-order traversal fashion;

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Types of trees
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning