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.