Question: USING C + + and PLEASE COMMENT Program Specification: 1 . Read data for names and weights for 1 5 people from the console where

USING C++ and PLEASE COMMENT
Program Specification:
1. Read data for names and weights for 15 people from the console where there is a name on a line followed by a weight on the next line, like in names.txt.
2. Your program will build a list for the data maintained in ascending order based on both name and weight via a doubly linked list.
3. This dll will use one pointer to keep weights in sorted order, and use the other link to keep names on sorted order.
4. You need to build the list as you go maintaining this ordering, so at any time a print method was called it would print the related field in order. (This means nodes are added to the list in sorted order, elements are not added to the list followed by a sort called on the list.)
For example after 3 elements are added for (Name Weight):
Michael 275, Tom 150, Abe 200.
Output:
Names & weights sorted(ascending) by name. : Abe 200, Michael 275, Tom -150
Names & weights sorted(ascending) by weight. : Tom 150, Abe 200, Michael -275
Sample Test Data:
Mark
150
Tina
115
Zach
55
Amy
140
Steve
220
Brian
250
Liz
125
Brian
220
Laura
115
Alex
175
Jason
210
Eric
175
Aaron
195
Kim
135
Brandon
78

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!