https://github.com/abraaohonorio/study-stuff-backend
[SSB] - A repository with all my study stuff materials with focus in backend
https://github.com/abraaohonorio/study-stuff-backend
Last synced: 3 months ago
JSON representation
[SSB] - A repository with all my study stuff materials with focus in backend
- Host: GitHub
- URL: https://github.com/abraaohonorio/study-stuff-backend
- Owner: AbraaoHonorio
- License: cc0-1.0
- Created: 2020-05-15T13:59:23.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T02:28:59.000Z (about 5 years ago)
- Last Synced: 2025-01-15T14:16:12.538Z (5 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# study stuff backend
[SSB] - A repository with all my study stuff materials with focus in backendHere are the topics that I think are important that we need to know to be an excellent software engineer
## Table of Contents 📦
1. **Data Structures:**
- [ ] Vectors
- [ ] Linked lists
- [ ] Stacks
- [ ] Queues
- [ ] Heaps
- [ ] Hash tables
- [ ] Trees
- [ ] Graphs2. **Algorithms Sorting:**
- [ ] Selection sort
- [ ] Insertion sort
- [ ] Merge sort
- [ ] Quicksort
- [ ] Heap Sort
- [ ] Counting sort
- [ ] Bucket sort
- [ ] Radix sort
- [ ] Binary search
- [ ] Breadth-first search
- [ ] Depth-first search3. **Object Oriented Programming:**
- [ ] Classes and Objects
- [ ] Constructor and Destructor
- [ ] Function Overloading
- [ ] Encapsulation
- [ ] Inheritance
- [ ] Interface
- [ ] Polymorphism
- [ ] *Solid:*
- [ ] S: Single Responsibility Principle (SRP)
- [ ] O: Open closed Principle (OSP)
- [ ] L: Liskov substitution Principle (LSP)
- [ ] I: Interface Segregation Principle (ISP)
- [ ] D: Dependency Inversion Principle (DIP)4. **Design patterns:**
- [ ] Strategy
- [ ] Singleton
- [ ] Adapter
- [ ] Prototype
- [ ] Decorator
- [ ] Visitor
- [ ] Factory, abstract factory
- [ ] Facade
- [ ] Observer
- [ ] Proxy
- [ ] Delegate
- [ ] Command
- [ ] State
- [ ] Memento
- [ ] Iterator
- [ ] Composite
- [ ] Flyweight