Resource (computer science) in the context of Best, worst and average case


Resource (computer science) in the context of Best, worst and average case

Resource (computer science) Study page number 1 of 1

Play TriviaQuestions Online!

or

Skip to study material about Resource (computer science) in the context of "Best, worst and average case"


HINT:

👉 Resource (computer science) in the context of Best, worst and average case

In computer science, best, worst, and average cases of a given algorithm express what the resource usage is at least, at most and on average, respectively. Usually the resource being considered is running time, i.e. time complexity, but could also be memory or some other resource.Best case is the function which performs the minimum number of steps on input data of n elements. Worst case is the function which performs the maximum number of steps on input data of size n. Average case is the function which performs an average number of steps on input data of n elements.

In real-time computing, the worst-case execution time is often of particular concern since it is important to know how much time might be needed in the worst case to guarantee that the algorithm will always finish on time.

↓ Explore More Topics
In this Dossier