·clrs-algorithms
{}

clrs-algorithms

grndlvl/software-patterns

Data structures and algorithms reference based on CLRS. Use this skill when implementing, discussing, or choosing data structures or algorithms. Auto-activates for algorithm selection, complexity analysis, and performance optimization. Comprehensive coverage of fundamental and advanced data structures with pseudocode examples.

5Installs·0Trend·@grndlvl

Installation

$npx skills add https://github.com/grndlvl/software-patterns --skill clrs-algorithms

SKILL.md

A comprehensive reference for data structures and algorithms based on "Introduction to Algorithms" (CLRS). This skill provides language-agnostic guidance with pseudocode examples that can be translated to any programming language.

Linear Structures | Structure | Access | Search | Insert | Delete | Use When |

| Array | O(1) | O(n) | O(n) | O(n) | Known size, index access | | Dynamic Array | O(1) | O(n) | O(1) | O(n) | Unknown size, frequent append | | Linked List | O(n) | O(n) | O(1) | O(1) | Frequent insert/delete | | Stack | O(1) | O(n) | O(1) | O(1) | LIFO needed | | Queue | O(1) | O(n) | O(1) | O(1) | FIFO needed |

View raw

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/grndlvl/software-patterns --skill clrs-algorithms
Category
{}Data Analysis
Verified
First Seen
2026-02-11
Updated
2026-02-18

Quick answers

What is clrs-algorithms?

Data structures and algorithms reference based on CLRS. Use this skill when implementing, discussing, or choosing data structures or algorithms. Auto-activates for algorithm selection, complexity analysis, and performance optimization. Comprehensive coverage of fundamental and advanced data structures with pseudocode examples. Source: grndlvl/software-patterns.

How do I install clrs-algorithms?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/grndlvl/software-patterns --skill clrs-algorithms Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor

Where is the source repository?

https://github.com/grndlvl/software-patterns

Details

Category
{}Data Analysis
Source
skills.sh
First Seen
2026-02-11