A Way For Learning

Divide and Conquer Algorithm

No comments
Divide and Conquer Algorithm
Advantages:

  • Solving difficult problems
  • Parallelism
  • Memory Access


Disadvantages:

  • Recursion is slow because of the overhead of the repeated sub problems.

Applications:

  • Binary Search
  • Merge Sort
  • Quick Sort
  • Median Finding
  • Min and Max Finding
  • Matrix Multiplication
  • Closest Pair Problem


Useful Links:

No comments :

Post a Comment