Open In App

Divide and Conquer Algorithm

Last Updated : 06 Jul, 2025
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report

Divide and Conquer algorithm is a problem-solving strategy that involves.

  • Divide : Break the given problem into smaller non-overlapping problems.
  • Conquer : Solve Smaller Problems
  • Combine : Use the Solutions of Smaller Problems to find the overall result.

Examples of Divide and Conquer are Merge Sort, Quick Sort, Binary Search and Closest Pair of Points.

Divide-and-Conquer-banner

Basics

Standard Algorithms

Practice problems

Practice Standard Algorithms

Quick Links :


Article Tags :
Practice Tags :

Similar Reads