Monday, December 5, 2011

Divide and Conquer Method

Divide: Break the problem into subproblems recursively.

Conquer: Solve each sub problems.

Combine: All the solutions of sub problems are combined to get the solution of the original problem.

Advantages

  • Increase the speed.


By running sub problems in parallel.

  • Increase the Cache Performance.


Applications

More work on divide phase.
Less work for others.

Less work on divide phase.
More work for others.

No comments:

Post a Comment

How to enable CORS in Laravel 5

https://www.youtube.com/watch?v=PozYTvmgcVE 1. Add middleware php artisan make:middleware Cors return $next($request) ->header('Acces...