Algorithms Wiki
Advertisement

Introduction[]

This page aims to be a comprehensive catalog of code optimizations similar to the catalog of refactorings in Martin Fowler's "Refactoring book", or the Portland's Patterns Repository.

The Catalog[]

Philosophy[]

Implications of Optimization[]

  • Code may be harder to understand.
  • Lack of modularity.
  • Added Complexity.
    • libJudy (faster) vs. libavl2 (smaller and simpler).
    • Freecell Solver (faster and more powerful) vs. patsolve (smaller)
Advertisement