linked list - C++ Fantasy Football Draft Program - Adding Players to Teams -


I am working on creating a C ++ program which will simulate a fantasy football draft .. I have a linked list List of Team Names, Now to participate in the draft to each person, I would like to know how should I go about adding a Team Draft to my team to the players. I have a football player who reads in a file and can find out how to choose them, but it does not understand how to store them in their team.

Any help appreciated in advance thanks

Well, you have a team Must be square; Team class should have a container to name the player (another linked list, we say). Your list should now have teams instead of strings

Eventually the list of player names will probably be upgraded to the list of player objects - yet another class that you want to define.

I know it's unclear, but does it help?

Comments