Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/fractalate/study-clrs-introduction-to-algorithms
- Owner: fractalate
- Created: 2024-11-02T13:11:54.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-16T02:24:00.000Z (about 1 month ago)
- Last Synced: 2024-12-16T03:22:42.488Z (about 1 month ago)
- Topics: computer-science, mathematics
- Language: Jupyter Notebook
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```