Question: write a program which reads integers into a linked list using pointers to structures instead of array indices. The integers must be read from an

write a program which reads integers into a linked list using pointers to structures instead of array indices. The integers must be read from an input file determined by prompting the user. Allocate an array of 50 C++ structures defined as follows:

struct entry {

int value; // the integer read in

struct entry *nextPtr; // pointer to the next structure

};

You must also declare a struct entry *firstPtr which points to the first entry in the linked list. You must declare a struct *lastPtr which points to the last entry in the linked list. You must NOT allow the lastPtr to point beyond the end of the array.After reading in the integers in the file print out (using pointers, not array indices) the integers read in the order they were read with no more than 10 entries per line. Also include a while loop that couts an error if the user does not input the right file, and another while loop that gives an error if the input file contains stuff other than 50 numbers.

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 Databases Questions!