Marked Personal Progress

This commit is contained in:
Emre Cetin 2024-04-15 11:21:55 +03:00
parent 0937d35dcd
commit 7d073744ee
1 changed files with 107 additions and 107 deletions

214
README.md
View File

@ -84,124 +84,124 @@ For a complete CS self-taught program, the resources for my study plan have been
### The Study Plan ### The Study Plan
+ [What is it?](#what-is-it) x [What is it?](#what-is-it)
- [Why use it?](#why-use-it) x [Why use it?](#why-use-it)
- [How to use it](#how-to-use-it) x [How to use it](#how-to-use-it)
- [Don't feel you aren't smart enough](#dont-feel-you-arent-smart-enough) x [Don't feel you aren't smart enough](#dont-feel-you-arent-smart-enough)
- [A Note About Video Resources](#a-note-about-video-resources) x [A Note About Video Resources](#a-note-about-video-resources)
- [Choose a Programming Language](#choose-a-programming-language) x [Choose a Programming Language](#choose-a-programming-language)
- [Books for Data Structures and Algorithms](#books-for-data-structures-and-algorithms) x [Books for Data Structures and Algorithms](#books-for-data-structures-and-algorithms)
- [Interview Prep Books](#interview-prep-books) x [Interview Prep Books](#interview-prep-books)
- [Don't Make My Mistakes](#dont-make-my-mistakes) x [Don't Make My Mistakes](#dont-make-my-mistakes)
- [What you Won't See Covered](#what-you-wont-see-covered) x [What you Won't See Covered](#what-you-wont-see-covered)
- [The Daily Plan](#the-daily-plan) x [The Daily Plan](#the-daily-plan)
- [Coding Question Practice](#coding-question-practice) x [Coding Question Practice](#coding-question-practice)
- [Coding Problems](#coding-problems) x [Coding Problems](#coding-problems)
### Topics of Study ### Topics of Study
- [Algorithmic complexity / Big-O / Asymptotic analysis](#algorithmic-complexity--big-o--asymptotic-analysis) x [Algorithmic complexity / Big-O / Asymptotic analysis](#algorithmic-complexity--big-o--asymptotic-analysis)
- [Data Structures](#data-structures) x [Data Structures](#data-structures)
- [Arrays](#arrays) x [Arrays](#arrays)
- [Linked Lists](#linked-lists) x [Linked Lists](#linked-lists)
- [Stack](#stack) x [Stack](#stack)
- [Queue](#queue) x [Queue](#queue)
- [Hash table](#hash-table) x [Hash table](#hash-table)
- [More Knowledge](#more-knowledge) x [More Knowledge](#more-knowledge)
- [Binary search](#binary-search) x [Binary search](#binary-search)
- [Bitwise operations](#bitwise-operations) x [Bitwise operations](#bitwise-operations)
- [Trees](#trees) x [Trees](#trees)
- [Trees - Intro](#trees---intro) x [Trees - Intro](#trees---intro)
- [Binary search trees: BSTs](#binary-search-trees-bsts) x [Binary search trees: BSTs](#binary-search-trees-bsts)
- [Heap / Priority Queue / Binary Heap](#heap--priority-queue--binary-heap) x [Heap / Priority Queue / Binary Heap](#heap--priority-queue--binary-heap)
- balanced search trees (general concept, not details) x balanced search trees (general concept, not details)
- traversals: preorder, inorder, postorder, BFS, DFS x traversals: preorder, inorder, postorder, BFS, DFS
- [Sorting](#sorting) x [Sorting](#sorting)
- selection x selection
- insertion x insertion
- heapsort x heapsort
- quicksort x quicksort
- mergesort x mergesort
- [Graphs](#graphs) x [Graphs](#graphs)
- directed x directed
- undirected x undirected
- adjacency matrix x adjacency matrix
- adjacency list x adjacency list
- traversals: BFS, DFS x traversals: BFS, DFS
- [Even More Knowledge](#even-more-knowledge) x [Even More Knowledge](#even-more-knowledge)
- [Recursion](#recursion) x [Recursion](#recursion)
- [Dynamic Programming](#dynamic-programming) x [Dynamic Programming](#dynamic-programming)
- [Design Patterns](#design-patterns) x [Design Patterns](#design-patterns)
- [Combinatorics (n choose k) & Probability](#combinatorics-n-choose-k--probability) x [Combinatorics (n choose k) & Probability](#combinatorics-n-choose-k--probability)
- [NP, NP-Complete and Approximation Algorithms](#np-np-complete-and-approximation-algorithms) x [NP, NP-Complete and Approximation Algorithms](#np-np-complete-and-approximation-algorithms)
- [How computers process a program](#how-computers-process-a-program) x [How computers process a program](#how-computers-process-a-program)
- [Caches](#caches) x [Caches](#caches)
- [Processes and Threads](#processes-and-threads) x [Processes and Threads](#processes-and-threads)
- [Testing](#testing) x [Testing](#testing)
- [String searching & manipulations](#string-searching--manipulations) x [String searching & manipulations](#string-searching--manipulations)
- [Tries](#tries) x [Tries](#tries)
- [Floating Point Numbers](#floating-point-numbers) x [Floating Point Numbers](#floating-point-numbers)
- [Unicode](#unicode) x [Unicode](#unicode)
- [Endianness](#endianness) x [Endianness](#endianness)
- [Networking](#networking) x [Networking](#networking)
- [Final Review](#final-review) x [Final Review](#final-review)
### Getting the Job ### Getting the Job
- [Update Your Resume](#update-your-resume) x [Update Your Resume](#update-your-resume)
- [Find a Job](#find-a-job) x [Find a Job](#find-a-job)
- [Interview Process & General Interview Prep](#interview-process--general-interview-prep) x [Interview Process & General Interview Prep](#interview-process--general-interview-prep)
- [Be thinking of for when the interview comes](#be-thinking-of-for-when-the-interview-comes) x [Be thinking of for when the interview comes](#be-thinking-of-for-when-the-interview-comes)
- [Have questions for the interviewer](#have-questions-for-the-interviewer) x [Have questions for the interviewer](#have-questions-for-the-interviewer)
- [Once You've Got The Job](#once-youve-got-the-job) x [Once You've Got The Job](#once-youve-got-the-job)
**---------------- Everything below this point is optional ----------------** **---------------- Everything below this point is optional ----------------**
### Optional Extra Topics & Resources ### Optional Extra Topics & Resources
- [Additional Books](#additional-books) x [Additional Books](#additional-books)
- [System Design, Scalability, Data Handling](#system-design-scalability-data-handling) (if you have 4+ years experience) x [System Design, Scalability, Data Handling](#system-design-scalability-data-handling) (if you have 4+ years experience)
- [Additional Learning](#additional-learning) x [Additional Learning](#additional-learning)
- [Compilers](#compilers) x [Compilers](#compilers)
- [Emacs and vi(m)](#emacs-and-vim) x [Emacs and vi(m)](#emacs-and-vim)
- [Unix command line tools](#unix-command-line-tools) x [Unix command line tools](#unix-command-line-tools)
- [Information theory](#information-theory-videos) x [Information theory](#information-theory-videos)
- [Parity & Hamming Code](#parity--hamming-code-videos) x [Parity & Hamming Code](#parity--hamming-code-videos)
- [Entropy](#entropy) x [Entropy](#entropy)
- [Cryptography](#cryptography) x [Cryptography](#cryptography)
- [Compression](#compression) x [Compression](#compression)
- [Computer Security](#computer-security) x [Computer Security](#computer-security)
- [Garbage collection](#garbage-collection) x [Garbage collection](#garbage-collection)
- [Parallel Programming](#parallel-programming) x [Parallel Programming](#parallel-programming)
- [Messaging, Serialization, and Queueing Systems](#messaging-serialization-and-queueing-systems) x [Messaging, Serialization, and Queueing Systems](#messaging-serialization-and-queueing-systems)
- [A*](#a) x [A*](#a)
- [Fast Fourier Transform](#fast-fourier-transform) x [Fast Fourier Transform](#fast-fourier-transform)
- [Bloom Filter](#bloom-filter) x [Bloom Filter](#bloom-filter)
- [HyperLogLog](#hyperloglog) x [HyperLogLog](#hyperloglog)
- [Locality-Sensitive Hashing](#locality-sensitive-hashing) x [Locality-Sensitive Hashing](#locality-sensitive-hashing)
- [van Emde Boas Trees](#van-emde-boas-trees) x [van Emde Boas Trees](#van-emde-boas-trees)
- [Augmented Data Structures](#augmented-data-structures) x [Augmented Data Structures](#augmented-data-structures)
- [Balanced search trees](#balanced-search-trees) x [Balanced search trees](#balanced-search-trees)
- AVL trees x AVL trees
- Splay trees x Splay trees
- Red/black trees x Red/black trees
- 2-3 search trees x 2-3 search trees
- 2-3-4 Trees (aka 2-4 trees) x 2-3-4 Trees (aka 2-4 trees)
- N-ary (K-ary, M-ary) trees x N-ary (K-ary, M-ary) trees
- B-Trees x B-Trees
- [k-D Trees](#k-d-trees) x [k-D Trees](#k-d-trees)
- [Skip lists](#skip-lists) x [Skip lists](#skip-lists)
- [Network Flows](#network-flows) x [Network Flows](#network-flows)
- [Disjoint Sets & Union Find](#disjoint-sets--union-find) x [Disjoint Sets & Union Find](#disjoint-sets--union-find)
- [Math for Fast Processing](#math-for-fast-processing) x [Math for Fast Processing](#math-for-fast-processing)
- [Treap](#treap) x [Treap](#treap)
- [Linear Programming](#linear-programming-videos) x [Linear Programming](#linear-programming-videos)
- [Geometry, Convex hull](#geometry-convex-hull-videos) x [Geometry, Convex hull](#geometry-convex-hull-videos)
- [Discrete math](#discrete-math) x [Discrete math](#discrete-math)
- [Additional Detail on Some Subjects](#additional-detail-on-some-subjects) x [Additional Detail on Some Subjects](#additional-detail-on-some-subjects)
- [Video Series](#video-series) x [Video Series](#video-series)
- [Computer Science Courses](#computer-science-courses) x [Computer Science Courses](#computer-science-courses)
- [Papers](#papers) x [Papers](#papers)
--- ---