Asymptotic Notations
Asymptotic Analysis of algorithms ( asymptotic notations ) Resources for an algorithm are usually expressed as a function regarding input. Often this function is messy and complicated to work. To study Function growth efficiently, we reduce the function down to the important part. Let f (n) = an 2 +bn+c In this function, the n 2 term dominates the function that is when n gets sufficiently large. Dominate terms are what we are interested in reducing a function, in this; we ignore all constants and coefficient and look at the highest order term concerning n. Asymptotic notation: The word Asymptotic means approaching a value or curve arbitrarily closely (i.e., as some sort of limit is taken). Asymptotic analysis It is a technique of representing limiting behavior. The methodology has the applications across science. It can be used to analyze the performance of an algorithm for some large data set. 1. In computer science in the analysis of algorithms, considering ...
Comments
Post a Comment