Page 1 of 1

C ++ Quiz #2 Create a race structure that has The name of the race as a character string, ie “RACE 1” or “RACE 2”, The t

Posted: Mon Jun 06, 2022 5:56 pm
by answerhappygod
C ++
Quiz #2
Create a race structure that has
The name of the race as a character string, ie “RACE 1”
or “RACE 2”,
The time of the race
A pointer to the linked list of entries for that
race
Create a race array of 3 (or 4) of those race
structures,
For the linked list of entries for a particular race
that you need above, make a horse entry structure (the building
block of your list) you should have
The horse name
The jockey name
The jockey weight
A pointer to the next horse entry
Now you need to
Populate the structure (ie set up the three races on the
schedule, add 2-3 horses entries to each race. You can
hardcode the entries if you want to, rather than getting them from
the user, just to save the time of making a menu interface and
whatnot.
Be able to print the schedule
So example output would be
RACE 1 10:AM May 12, 2021
Horse: Misty
Spirit
Jockey: John
Valazquez
Horse: Frankly I’m
kidding
Jockey: Mike E
Smith
RACE 2
Horse: Rage against the
Machine
Jockey: Russell
Baze
RACE 3
Horse:
Secretariat
Jockey: Bill
Shoemaker
Horse: Man o War
Jockey: David A
Gall
Horse: Seabiscuit
Jockey: Angel Cordero
Jr
Hints
You are going to have an array of three races. For
each race record in the array, you have all the race info like the
name, the time it is starting, as well as including a linked list
of the horses entered for that race (a linked list of horse
entries).