Algorithm & Design
Complexity and its Type
Complexity of Algorithm The complexity of an algorithm(M) is the function f(n) which gives the running time and/or storage space requirement of the algorithm in terms of the size(n) of the input data. Mostly, the storage space required by an algorithm is simply a multiple of the data size(n). Generally, Read more…