Im building web application in which Im trying to assign users to groups based on their preferences. In my application I have 1 table where users infos are stored, and 1 table where users choices are stored.
Users must pick at least one choice from 10.
I`m trying to write algorithm that will satisfy these rules:
1. there must be from 4 to 8 users in a group
2. each user must be at most in one group
3. every user in the group, have at least one preferred choice in common
4. and preferably each user belongs to the group / as many as possible
but with no luck yet. Have anybody any idea how to find such a solution? Also algorithm which will find good solution (not best), will be much appreciated.