Question
PLEASE I NEED THIS DONE BY THE NEXT HOUR! Using c++ code, and this as a text file Jane Murphy 79 Clarke Griffith 98 Craig
PLEASE I NEED THIS DONE BY THE NEXT HOUR!
Using c++ code, and this as a text file
Jane Murphy 79
Clarke Griffith 98
Craig Bellamy 67
Manny Rhodes 82
Robert Reyes 72
Alexis Rodrigues 87
Daniel Proctor 53
Oliver Kostermann 60
Rachel Constantine 91
Nagisa Hiroyama 85
Simone Xypher 97
Jason Rundelhause 75
Write the following functions
A. A function that takes in an integer n and a pointer to the first node of a linked list, and inserts a new node into the linked list at position n. If n is too high, insert the node
at the end of the list. Your function should request the appropriate node information from the user.
B. A function that takes in an integer n and the pointer to the first node of a linked list, and deletes the node at the nth position, return an appropraite message if value of n is too high
C. A function that takes in a pointer to the first node in a linkedlist and deletes the first node in the linked list
D. A value returning function that takes in a pointer to the firt node of a linked list, and performs a deep copy of the list, and returns the pointer to the first node of the copied list.
E. A function that outputs the complete info of the student with the highest score
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started