[C Language] Algorithm Analysis | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

[C Language] Algorithm Analysis

Can someone tell me something about algorithm analysis in C? Worst case and etc. O() f() n, i... O(n^2) O(2^n) O(1) Of course if is that possible... Text or link is welcome...

13th Apr 2019, 5:51 PM
Baltazarus
Baltazarus - avatar
2 Answers
+ 9
Nitrocell complexity of any algorithms are dependent on the steps to solve that algorithm for an particular task these is generally represented by notation and 3 notation are used for showing the complexity. 1) BigOh (O) 2) Thetha (Φ) 3) Omega (π) all this notation are represented to any algorithm according to there time to execute. This link may give you some information on the topic with an example. https://www.sololearn.com/learn/6362/?ref=app
13th Apr 2019, 5:59 PM
GAWEN STEASY
GAWEN STEASY - avatar
+ 1
GAWEN STEASY thanks so much! 😊👍
13th Apr 2019, 6:01 PM
Baltazarus
Baltazarus - avatar