Relative Content

Tag Archive for algorithms

algorithm to extract “possibilities” from a tree

From a given tree, subsequent trees have to be generated. Nodes can be marked as “variant” in the given tree (the example uses an asterisk to mark the node). All possible combinations between the variants form the resulting trees.

Algorithms to Determine How Much A Factor Contributes to A Total Value

Lets say that I have hundreds/thousands of objects(entries) in a database and each object contains 10 attributes. I have a way to quantitatively measure each attribute where a higher number implies that the object is better in that area. I also have a final price associated with that object. Is there any way to programatically (through maybe an algorithm) determine an approximation of how much each attribute contributes to the total cost?

Algorithm to find if a set can be recreated

I’m finding it hard to solve the problem and was hoping that someone could help me with the solution or at least give me a search term to use for problems like this one.