Help me out here - just trying to better understand what 'psuedo-polynomial' means...
If the input to an NP-Complete problem is 100 items(ie n=100), and the 'target' is the actual value '100'(t=100): Does a psuedo-polynomial algorithm take n*t (ie.. 100*100) steps to complete?
If so it seems to me that a psuedo-polynomial algorithm is much faster than exponential algorithm.
C
Yes, the pseudo-polynomial algorithm takes $O(nt)$ steps. However, this may not be faster than the exponential algorithm. Suppose $t\approx 2^n$? Then the algorithm takes $O(n2^n)$ steps, which is the same as the exponential algorithm, and it takes way more space.