One vs all solutions

Tags: Algorithm  

This kind of question looks this way,

1, need find all possible solutions, we need backtracking method to find them.

2, only need to check if it is available or not, check.

3, only need for a optimist value, Dynamic programming would be very helpful here.

Usually we need dp for optimist solution, backtracking for all solutions, and another idea for avaliable

or statics solution.

 

leon Published by 2015-02-14 19:14

Detail »

&(&i) vs *(*i) in C

Tags: C/C++  

Is &(&i) valid in C?

No, I would not say so. we know the expression try to get an address of

an address of a variable, however, only after compiler time construction, we

could get a value for its address, for this exact time the compiler could not

return recognize the address of a new construct value in Compiler,

So it would print error.

 

 

leon Published by 2015-01-04 01:21

Detail »