Question
In a C++ program, and using the txt file as shown: Apple, red, 5 banana, yellow, 6 peach, pink, 3 pineapple, yellow, 2 watermelon, green,
In a C++ program, and using the txt file as shown:
Apple, red, 5
banana, yellow, 6
peach, pink, 3
pineapple, yellow, 2
watermelon, green, 1
mango, yellow, 4
implement the text for a linked list of firuts. provide a linked list node with the fruit fields and a pointer. No need of arrays are allowed in the program. And this linked list should be created in the main function and passed to other functions. it isnot global.
create:
a function inser( ) that reads 6 records from the file into a linked list.
a function print( ) that prints out the records in the linked list
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