Explain Space-Complexity and Time-Complexity.
Answers
Answered by
1
Answer:
Time complexity and space complexity
Explanation:
time complexity is an funtion describing the amount of time an input to the algorithm. ...Space complexity is a function describing the amount of memory an algorithm takes off the amount of input to the algorithm
Answered by
5
There are two main complexity measures of the efficiency of an algorithm: #1. Time complexity is a f unction describing the amount of time an algorithm takes in terms of the amount of input to the algorithm. ... 2. Space complexity is a function describing the amount of memory (space) an algorithm takes in terms of the amount of input to the algorithm. ...
Similar questions