0 votes
in DBMS by
What is an asymptotic analysis of an algorithm?

1 Answer

0 votes
by
Asymptotic analysis of an algorithm defines the run-time performance as per its mathematical boundations. Asymptotic analysis helps us articulate the best case(Omega Notation, Ω), average case(Theta Notation, θ), and worst case(Big Oh Notation, Ο) performance of an algorithm
...