Software Engineering KB

Home

❯

01 Foundations

❯

01 Algorithms

❯

01 Concept

❯

Comparison Based

Comparison-Based

Feb 10, 20261 min read

  • algorithms
  • sorting
  • comparison-based

Comparison-Based

← Back to Sorting

Sorting algorithms that determine element order by comparing pairs of elements. Comparison-based sorts have a theoretical lower bound of O(n log n) in the worst case.

Key Properties

  • Bubble Sort
  • Selection Sort
  • Insertion Sort
  • Merge Sort
  • Quick Sort
  • Heap Sort

Related

  • Non-Comparison (alternative approach)
  • Analysis (evaluating sorting performance)

algorithms sorting comparison-based


Graph View

  • Comparison-Based
  • Key Properties
  • Related

Backlinks

  • Sorting
  • Analysis
  • Hybrid
  • Non-Comparison
  • Bubble Sort
  • Heap Sort
  • Insertion Sort
  • Merge Sort
  • Quick Sort
  • Selection Sort

Created with Quartz v4.5.2 © 2026

  • GitHub