मुख्य कंटेंट तक स्किप करें
upasana-2006
EditReport

Complexity Table Generator

The Complexity Table Generator provides a reusable way to display standardized algorithm complexity information across the documentation.

Instead of manually writing comparison tables repeatedly, contributors can add metadata once in a centralized JSON file and reuse it through an MDX component.

Example Usage

import ComplexityTable from '@site/src/components/ComplexityTable';

<ComplexityTable
algorithms={[
"Bubble Sort",
"Merge Sort",
"Quick Sort"
]}
/>
Finished reading? Mark this topic as complete.