What is a good algorithm to distribute items with specific requirements?
Posted
by
user66160
on Programmers
See other posts from Programmers
or by user66160
Published on 2012-09-25T21:35:31Z
Indexed on
2012/09/26
3:49 UTC
Read the original article
Hit count: 171
algorithms
|distribution
I have to programmatically distribute a set of items to some entities, but there are rules both on the items and on the entities like so:
Item one: 100 units, only entities from Foo
Item two: 200 units, no restrictions
Item three: 100 units, only entities that have Bar
Entity one: Only items that have Baz
Entity one hundred: No items that have Fubar
I only need to be pointed in the right direction, I'll research and learn the suggested methods.
© Programmers or respective owner