_index.md (700B)
1 +++ 2 title = 'Computational Thinking' 3 +++ 4 # Computational Thinking 5 1. [Flowchart symbols](symbols-of-a-flowchart) 6 2. [Solution strategies](algorithms) 7 3. Algorithms 8 1. [Big O](big-o-notation) 9 2. [Search](search-algorithms) 10 - [Linear (sequential)](linear-search) 11 - [Binary](binary-search) 12 3. [Sort](sorting-algorithms) 13 - [Bubble](bubble-sort) 14 - [Quick](quicksort) 15 - [Merge](merge-sort) 16 4. [Graph theory](graphs) 17 1. [Types of graphs](types-of-graphs) 18 2. [Paths](paths) 19 3. [Greedy algorithms](greedy-technique) 20 - [Dijkstra’s](dijkstra-s-algorithm) 21 - [Prim’s](prim-s-algorithm) 22 - [Kruskal's](kruskal-s-algorithm)