I'm working on an windows app. This app contains a dynamic list of names, that are displayed in the form (user can add or delete a certain name). What I want to do is for each name in db have another random name from the list. The only condition is that for each name should be asssigned different name and all the names must be used only once.
What I've tried to do is using a List to contain names from db and pick a random index from the List and compare it with the corresponding place in db. If it's different then remove at that index, and so on until no more names to place.
But after that I realised it's not a perfect way to do it. Let's say, I've got 5 names,
name 1 randomly gets name 3 name 2 randomly gets name 1 name 3 randomly gets name 4 name 4 randomly gets name 2 and... name 5 can only get name 5, so in this case it doesn't work.
Anyone has any idea how I could make it work? What other method should I use? Number of names is about 20. Later on I will have to assign 2 different names for each name. But at first I need to solve this problem.
Any help will be appreciated! I'm writing in C#
