Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a piece of code that says:

for i = 4,16, . . . , n

I am trying to find an upper bound in terms of big oh notation for the number of times the statement gets executed. I believe here it goes like 4,42,43 ... and so on. Since it grows exponentially, it looks like to me that that code is executed about O(logn) times. Am i right? Thanks in advance.

share|improve this question
add a counter in your code and increment it, you'll have your answer right away – Jeroen Feb 26 at 9:10
Without more information, this could also mean i is incremented by 12 in each step, which would give O(n). – Henry Feb 26 at 9:34

1 Answer

You can confirm your result by thinking in terms of a loop whose index variable is used as the exponent, taking the values 1, 2, 3, ... , floor(log_4(n))

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.