Write a C++ program to demonstrate a Queue, using linked lists.
You should write functions for the following:
You will use the following data:
97 John
88 Randy
65 Colt
76 Tom
95 Ron
97 Jerry
79 Smith
97 Andy
87 Peter
97 Cindy
Your program will read this data, which shows the students grade followed by their name.
The program then prints the highest grade and the names of the students with the highest grade.
Use Queues with linked lists to implement that program.