Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cathyfu1215/cathyimplementseverything
Implementation of everything I learn!
https://github.com/cathyfu1215/cathyimplementseverything
Last synced: 6 days ago
JSON representation
Implementation of everything I learn!
- Host: GitHub
- URL: https://github.com/cathyfu1215/cathyimplementseverything
- Owner: cathyfu1215
- Created: 2023-12-23T21:46:52.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-23T04:48:26.000Z (12 months ago)
- Last Synced: 2024-11-11T21:13:23.885Z (2 months ago)
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CathyImplementsEverything
This is inspired by the famous Feynman quote**"If I cannot create it, I do not understand it."**
I will try to implement all the ideas / pseudo code I find.## Projects
## Data Structures
## Algorithms
#### [15 Sorting Algorithms in 6 Minutes](https://www.youtube.com/watch?v=kPRA0W1kECg)
* Binary Search (Grokking Algorithms Chapter 1)
* [in Python](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/binary_search.py)
* [in C](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/binary_search.c)
* [in Java](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/BinarySearch.java)
* Selection Sort (Grokking Algorithms Chapter 2)
* [in Python](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/selection_sort.py)
* [in C](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/selection_sort.c) (could have better solutions)
* [in Java](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/SelectionSort.java)
* Bubble Sort
* [in Python](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/bubble_sort.py)
* [in C](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/bubble_sort.c)
* [in Java](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/BubbleSort.java)
* Insertion Sort
* [in Python](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/insertion_sort.py)
* [in C](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/insertion_sort.c)
* Quick Sort (Grokking Algorithms Chapter 4)
* [in Python](https://github.com/cathyfu1215/CathyImplementsEverything/blob/main/quick_sort.py) (could improve, write in-place version)