This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Java in General and the fly likes a question on O(n^2) and O(n) Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "a question on O(n^2) and O(n)" Watch "a question on O(n^2) and O(n)" New topic
Author

a question on O(n^2) and O(n)

alex lotel
Ranch Hand

Joined: Feb 01, 2008
Posts: 191
how do we count the loops thing??
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35253
    
    7
That depends on the circumstances. Two nested loops could cause an algorithm to have O(n^2) complexity, but not necessarily so. Do you have an example of what you're wondering about?


Android appsImageJ pluginsJava web charts
alex lotel
Ranch Hand

Joined: Feb 01, 2008
Posts: 191
can you shed some light on this
i was tought that if we have 2 loops one
inside the other
that its
O(n^2)

but apparently this is not
true
can youexpalin me more of it??
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35253
    
    7
That depends on what the code is doing in the loop.

This loop describes an O(N^2) algorithm, because everything at line X is being executed N^2 times:

But the following case describes O(N) because the amount of work being done rises linearly with N:
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: a question on O(n^2) and O(n)
 
Similar Threads
pagination problem
Remove duplicates from char array with O(n) complexity
Big O Notation
Sorting method
Comparison of ArrayList and HashMap