Documentation with Scribble | Schema Programming Part 19
Write documentation as code. Learn how to use Scribble, Racket's documentation tool, to generate HTML and PDF docs that link directly to your source code.
Read article357 articles to explore
Write documentation as code. Learn how to use Scribble, Racket's documentation tool, to generate HTML and PDF docs that link directly to your source code.
Read articleExplore the Graph data structures in C. Learn key terminology, understand different representations like Adjacency Matrices and Adjacency Lists, and master fundamental traversal algorithms: Depth-First Search (DFS) and Breadth-First Search (BFS).
Read articleNon-linear data structures with Trees in C. Learn essential terminology, explore Binary Trees and Binary Search Trees (BSTs), master traversal algorithms (DFS, BFS), and implement core BST operations like insertion, search, and deletion.
Read articleLearn how to implement fundamental Abstract Data Types (ADTs) - Stacks (LIFO) and Queues (FIFO) - in C using both arrays and linked lists. Understand their operations, applications, and trade-offs.
Read articleMake your Racket programs fast. Understand the difference between Threads (concurrency), Futures (fine-grained parallelism), and Places (distributed parallelism).
Read article