Skip to main content

7 docs tagged with "divide-and-conquer"

View all tags

Convex Hull Problem

This document provides an overview of the Convex Hull problem using the divide-and-conquer approach.

Maximum-minimum

Maximum minimum finding using divide and conquer approach to reduce the number of comparisions.

Merge Sort

Learn about Merge Sort, a stable divide-and-conquer sorting algorithm that guarantees O(n log n) performance in all cases.

Quick Sort

Learn about Quick Sort, one of the most efficient sorting algorithms using divide-and-conquer with an average O(n log n) time complexity.

Ternary Search

A divide-and-conquer algorithm for finding the maximum or minimum of a unimodal function by partitioning the search space into three parts.