Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fractalate/study-clrs-introduction-to-algorithms

Study Materials for CLRS Introduction to Algorithms 3e
https://github.com/fractalate/study-clrs-introduction-to-algorithms

computer-science mathematics

Last synced: 19 days ago
JSON representation

Study Materials for CLRS Introduction to Algorithms 3e

Awesome Lists containing this project

README

        

# Introduction to Algorithms

Welcome to my self study resources for [Introduction to Algorithms e3](https://mitpress.mit.edu/9780262533058/introduction-to-algorithms/) by Cormen, Leiserson, Rivest, and Stein (CLRS).

## Index

* Chapter 3
* [Chpater 3.2 Notes (Notebook)](./chapter_03/c03s02_notes.ipynb)
* [Chpater 3.2 Exercises (Notebook)](./chapter_03/c03s02_exercises.ipynb)

## Python

To set up a Python virtual environment, from the root of this project:

```
python3 -m venv venv
source venv/bin/activate
```

Then install dependencies:

```
pip install jupyter matplotlib numpy scipy
```

When returning to the project, activate your Python virtual environment again:

```
source venv/bin/activate
```

Notebooks are distributed throughout the project, so you can open up Jupyter in the root of this project:

```
jupyter notebook
```