Tag optimization

Dynamic programming and the Fibonacci series

Dynamic programming and the Fibonacci series

Dynamic programming Dynamic programming (DP) is a computer programming method which consists in breaking down a complex problem into smaller problems, usually in a recursive way. Then, these problems are solved one at a time, typically storing the already computed…

Graphs – Finding optimal routes

Applying graph theory to find the optimal route

An example of how the use of graphs can help us find optimal routes to solve various problems. A graph system can be used for multiple purposes, being in some cases very useful to solve complex problems. In this article…