Update for 17-05-22 12:30
This commit is contained in:
parent
5afce4ff0c
commit
9ebdf71395
21
class/Algorithms.wiki
Normal file
21
class/Algorithms.wiki
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
= Algorithms =
|
||||||
|
|
||||||
|
== Topics ==
|
||||||
|
|
||||||
|
* Big O
|
||||||
|
* Search algos
|
||||||
|
* binary
|
||||||
|
* quicksort
|
||||||
|
* bubble
|
||||||
|
* heaps
|
||||||
|
* priority queue
|
||||||
|
* linear time sorting
|
||||||
|
* red black trees
|
||||||
|
* AVL
|
||||||
|
* B-trees
|
||||||
|
* hash tables
|
||||||
|
* graphs
|
||||||
|
* traversal
|
||||||
|
* min spanning tree
|
||||||
|
* dijkstra
|
||||||
|
* BFS/DFS
|
@ -7,10 +7,10 @@ My self made CS course, for free.
|
|||||||
== Core CS ==
|
== Core CS ==
|
||||||
|
|
||||||
* [[Discrete]]
|
* [[Discrete]]
|
||||||
* Data structures
|
* [[Data structures]]
|
||||||
* Programming patterns
|
* [[Programming patterns]]
|
||||||
* Programming Languages
|
* [[Programming Languages]]
|
||||||
* Algorithms
|
* [[Algorithms]]
|
||||||
|
|
||||||
== Low level ==
|
== Low level ==
|
||||||
|
|
||||||
|
12
class/Data structures.wiki
Normal file
12
class/Data structures.wiki
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
= Data structures =
|
||||||
|
|
||||||
|
== Topics ==
|
||||||
|
|
||||||
|
* Pointers
|
||||||
|
* Dynamic arrays (vectors)
|
||||||
|
* Linked lists
|
||||||
|
* single
|
||||||
|
* double
|
||||||
|
* Stacks
|
||||||
|
* Queue
|
||||||
|
* Binary trees
|
@ -1 +1,25 @@
|
|||||||
= Discrete =
|
= Discrete =
|
||||||
|
|
||||||
|
== Topics ==
|
||||||
|
|
||||||
|
* Propositional logic
|
||||||
|
* Define them
|
||||||
|
* and/or/implies/de morgan
|
||||||
|
* laws (communtative, associative, etc)
|
||||||
|
* Predicate logic
|
||||||
|
* Functions on logic statments
|
||||||
|
* Quantifiers (A and E)
|
||||||
|
* Nested quantifiers
|
||||||
|
* Functions
|
||||||
|
* domain, range
|
||||||
|
* Sequences
|
||||||
|
* summnations
|
||||||
|
* geometric and arithmetic progressions
|
||||||
|
* recurrence relations
|
||||||
|
* Set theory
|
||||||
|
* bags vs sets
|
||||||
|
* sets of numbers
|
||||||
|
* set operations
|
||||||
|
* Inference
|
||||||
|
* Induction
|
||||||
|
* pigeonhole
|
||||||
|
23
class/Programming patterns.wiki
Normal file
23
class/Programming patterns.wiki
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
= Programming Patterns =
|
||||||
|
|
||||||
|
== Topics ==
|
||||||
|
|
||||||
|
* Object based programming
|
||||||
|
* Templates
|
||||||
|
* STL
|
||||||
|
* associative containers
|
||||||
|
* algorithms
|
||||||
|
* Inheretance
|
||||||
|
* multiple inheretence
|
||||||
|
* patterns
|
||||||
|
* singelton
|
||||||
|
* state design
|
||||||
|
* decorator
|
||||||
|
* observer
|
||||||
|
* chain of responsability
|
||||||
|
* visitor
|
||||||
|
* composite
|
||||||
|
* command
|
||||||
|
* memento
|
||||||
|
* flyweight
|
||||||
|
* registry
|
Loading…
Reference in New Issue
Block a user