DECREASE AND
CONQUER TECHNIC
BHARATI C
Introduction
◦Change the larger problem with smaller.
◦Solve the smaller problem.
◦Convert the smaller problem solution into larger.
◦In this method problem can be solved using top
down (recursive) solution or bottom up(iterative)
solution.
◦Each time the size of the problem reduced by
same constant on each iteration.
◦This method is also called decrease by constant.
Example
◦a10=a9 * a
◦an=a(n-1) * a
◦f(n) =f(n-1)*a
◦f(n)=a*(n-1)
Application
◦Insertion sort
◦Graph searching algorithm
◦Depth first search
◦Breadth First search.
◦Topological sorting.
Decrease and conquer technic

Decrease and conquer technic