Time complxity: O(n) or O(n^2) or ... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Time complxity: O(n) or O(n^2) or ...

I wrote a code for the 'find the pair'-challenge. https://code.sololearn.com/cFYiyaIbMbgo/?ref=app Part of the challenge is to keep the O as low as possible. i thought i wrote it O(n) but in the comment some one wrote it is O(n^2). Can you tell me if it is indeed O(n^2) and why? https://www.sololearn.com/learn/6362/?ref=app I even added time measurement per element which seems to indicate O(n) but maybe that is not the right way to check the O? https://code.sololearn.com/c9X6j4D9c1oC/?ref=app

29th May 2018, 8:18 AM
davy hermans
davy hermans - avatar
6 Answers
+ 9
Python 'in' operator appears to have a worst case of O(n). Wrapping it with a for loop which runs for each element in the list would result in worst case of O(n²). I haven't handtraced the execution yet, but that's probably why your someone was claiming O(n²). https://stackoverflow.com/questions/13884177/complexity-of-in-operator-in-python
29th May 2018, 9:15 AM
Hatsy Rei
Hatsy Rei - avatar
+ 1
No it's O (n) the for in is not a double loop it's a single one so its O(n)
1st Feb 2019, 10:24 AM
Reverse
Reverse - avatar
0
I get why it is O(n^2) now, thanks @ILYA. Still don't get why it is not shown by calculated time. https://www.sololearn.com/learn/6060/?ref=app
29th May 2018, 12:49 PM
davy hermans
davy hermans - avatar
0
Actually it's true that this not the right way to calculate the big-O, because big-O indicates the time for the whole number of operations being executed. Therefore, here since you have calculated the time per list item, it's going to be the same for O(n) and O(n^2), because it's basically the time for only one operation.
29th May 2018, 2:26 PM
Afnan A.
Afnan A. - avatar
0
Afnan Abed i would think that in O(n^2) if the number of items x n, the time needed should get x n^2. Thus time per item should increase, no?
29th May 2018, 3:17 PM
davy hermans
davy hermans - avatar
0
davy hermans no that's not the case. It's that the time for each element stays the same, but the number of elements to be checked while running the code is more in case of O(n^2). It is that in O(n) it is n elements , but in O(n^2) it is n^2 elements.
29th May 2018, 5:08 PM
Afnan A.
Afnan A. - avatar