Please enable JavaScript.
Coggle requires JavaScript to display documents.
component 2 - Coggle Diagram
component 2
2.1- algorithms
-
abstraction
representing real world problems using variables and symbols and removing unnecessary elements from a problem
-
-
-
flow chart
a diagram that shows the inputs, outputs and processes in an algorithm
pseudocode
short English words, less precise than using a reference language e.g ELSE
reference language
formal way of representing an algorithm, easier to read and write
dry run
walking through an algorithm with sample data, running steps manually
-
-
-
-
-
-
-
merge sort
a list is split into individual lists, then combined
insertion sort
each item in tun, compared to the items in a sorted list and placed in correct positions
-
-