A program designer needs to decide on an algorithm to use from a choice of three. The table shows the worst-case Big O complexities for each algorithm.
Algorithm | Time Complexity | Space Complexity |
---|---|---|
1 | Linear | Exponential |
2 | Exponential | Constant |
3 | Logarithmic | Logarithmic |
The program designer is investigating the use of concurrent processing.
Give two benefits of using concurrent processing.
Did this page help you?