player ranking
So,...
I am meant to rank the player list based on their wins. I now made something that will sort the players after they win. Problem is it only gets executed once.
playerNames is a list
playerWins is a dictionary

15 Replies
List of what
Dictionary of what
Do you call it more than once?
playerNames holds just the names of the players
playerWins: key: players name, value: players wins
(we can make intelligent assumptions, it's just better to be explicit with your types when asking for help)
I want it to run until its sorted right
what's above played abo
You will have to do that, then
about
In a loop maybe
Or use LINQ
Or any number of other options
when now, for example, I run it and player 4 wins, 3 and 4 just switch places instead of 4 going all the way to the top
not allowed (school)
Just sort the whole list with every match
Or use some
SortedList
, SortedDictionary
, etc
If allowed
Fairdoes sorteddictionary sort on the value
I feel like you have a better shot recreating the collection after each win than trying to fit it inside an existing list
And your list doesn't need to do much. The list can just be a list of indexes that represent the index in your dictionary or whatever collection contains your players.
Would you be able to extend
playerNames
into an object containing both the player name and their wins? That would be a much easier way to maintain the context of players since they all have a wincount.(unless it's a requirement to modify the existing list)
I got this now but it always puts it at the top
Stefan helped me and it works now