Question: C++ Only. Build a data structure that lists video games by their genres (ie. Action, Shooter, RPG, etc.). For each genre, there will be a
C++ Only.
Build a data structure that lists video games by their genres (ie. Action, Shooter, RPG, etc.). For each genre, there will be a linear linked list of games with their title, a short description, their platform (ie. PC, Xbox, etc.), and year released. The data structure required is a linear linked list of genres (ie. Action, Shooter, RPG, etc.) where each node has a linear linked list of games in that category. You must use two different node structs (one for the genres and one for the game list). Each genre will have a head pointer to a game node.
You do not need to build anything else.
DO NOT POST RANDOM CRAP. IT WILL BE VOTED DOWN!
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
