Algorithms for pairing a rating system to an assignment queue

Posted by blunders on Programmers See other posts from Programmers or by blunders
Published on 2012-05-22T23:35:26Z Indexed on 2012/06/03 16:47 UTC
Read the original article Hit count: 242

Filed under:

Attempting to research how to allow a group of people to effectively rank a set of objects (each group member will have contributed one object to the group), and then assign each member an object that's not their own based on:

  • Their ratings of the objects,
  • Their objects rating, and
  • The object remaining to be assigned.

Idea is to attempt to assign objects to people based on the groups rating of their contribution to the group relative to other member's contribution, the the personal preferences expressed via the ratings.

Any suggestions for:

  • Further research,
  • Refining the statement of the problem/solution, or
  • A solution.

© Programmers or respective owner

Related posts about algorithms