That was a remarkable presentation. Good Job Warren
@ArmanAli-ww7ml6 жыл бұрын
what's the difference between dynamic programming and stochastic programming, until i was only familiar with the deterministic and stochastic optimization, what is dynamic and how it is different from the other two??/
@eminbaybarstimurstudent38023 жыл бұрын
Dynamic programming is a different concept from those two. It has derived from using the memory more efficiently, by using dynamic programming, you are storing the results as you iterate over your steps and it saves you from the burden of re-calculating your values of the algorithm from the start, and decreases the complexity of the problem. You can check out the Coin Change problem for instance.