[try Beta version]
Not logged in

 
Big O complexity

Feb 26, 2013 at 2:11am
What is the time complexity of this:

while(L1.contains(obj)) {
L1.remove(0);
if (L2.size() > L1.size()){
L2.remove(L2.size() - 1);
}
}

Is it O(n) because it might take as many as n times for the while statement to evaluate as false?
Feb 26, 2013 at 2:45am
Depends on the data structure of L1 and L2.

If their remove(0) (or remove(lastobject)) takes O(n) as well, then the whole thing can be O(n2).
Last edited on Feb 26, 2013 at 3:24am
Topic archived. No new replies allowed.