Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 692 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 692 Bytes

Grokking Algorithms In Swift

This repository contains sample code written in Swift based on the book, "Grokking Algorithms", by Aditya Bhargava, published by Manning.

The original sample code in Python, which the book's examples are based on, are linked from the publisher's page.

This code has been developed as part of a Book Club I am running with members of my team.

Each chapter has its own Playground page for specific examples and exercises.

Chapters

  • Binary Search
  • Selection Sort
  • Recursion
  • Quicksort
  • Hash tables
  • Breadth-first search
  • Dijkstra's algorithm
  • Greedy algorithms
  • Dynamic programming