Please enable JavaScript.
Coggle requires JavaScript to display documents.
computational thinking, sorting algorithms, searching algorithms - Coggle…
computational thinking
decomposition
breaking things down
abstraction
removing useless information
algorithms
step by step solutions
pattern recognition
repeating something / reuse code
sorting algorithms
merge
Puts them into lists
compares the first numbers in the lists
Insertion
divide and conquer
start from the first and go through the list inserting the information into the correct place
bubble
starts at the beginning
swaps pairs
compares the 2 numbers (either sticks or twists)
i love corban
searching algorithms
binary
Starts at the mid ppoint
only works with a sorted list
Bigger set of data- more efficient
linear
Start at the beginning of the list
Searches one item at a time
not in chronological order
not as efficient