vote up 2 vote down star

Or rather, what is the definition of a combinatorial algorithm and a linear algorithm, resp.?

To make it clear because obviously the first responders misunderstood the question: I am not looking for a definition of an algorithm running in linear time vs non-linear time. A linear algorithm is somehow related to linear programming, which is a technique for finding or approximating solutions to linear optimization problems.

Since NP-hard problems are so hard, there is a whole field trying to find approximate solutions. The traveling salesman problem for instance has several approximate solutions which run in polynomial time and produce a solution which is within a given bound of the best solution.

Some of these approximating algorithms are called a linear algorithm, others a combinatorial algorithm; and the latter seems to be preferred (Why?). These are the two concepts I would like to understand.

flag

70% accept rate
Are you sure that linear programming is solvable in linear time? I believe in linear programming the linear applies to the degree of the equations being solved, not necessarily the complexity of the algorithm to solve it. – JB King Jun 26 at 21:24
Linear programming is solvable in polynomial (not linear) time. – Eduardo León Sep 11 at 20:56

2 Answers

vote up 0 vote down

Combinatorial algorithms "explode" as their input grows. Linear algorithms grows proportional to their input, while combinatorial algorithms grows proportional to an exponent (or worse) or their input: enumerating all possible paths through a graph, for example.

link|flag
Sorry, that's not what I'm looking for. I have tried to clarify the question. – Tobias Jun 16 at 17:20
vote up 1 vote down

A linear algorithm tends to work with just one set of data - 'Take all the numbers in set a, double them, and put the result in set b'. The number of operations is equal to the count of items in set a

A combinatorial one works on combinations of sets - 'For each number in set a, work out the sum of that number and each number in set b and print to screen'. The number of operations is the product of the size of set a and the size of set b.

link|flag
Sorry, that's not what I'm looking for. I have tried to clarify the question. – Tobias Jun 16 at 17:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.