vote up 4 vote down star

What is the Worst Case Time Complexity t(n) :- I'm reading this book about algorithms and as an example how to get the T(n) for .... like the selection Sort Algorithm


Like if I'm dealing with the selectionSort(A[0..n-1])

//sorts a given array by selection sort
//input: An array A[0..n - 1] of orderable elements.
//output: Array A[0..n-1] sorted in ascending order

let me write a pseudocode

for i <----0 to n-2 do
  min<--i
for j<--i+1 to n-1 do
   ifA[j]<A[min] min <--j
swap A[i] and A[min]

--------I will write it in C# too---------------

private int[] a = new int[100];

// number of elements in array
private int x;

// Selection Sort Algorithm
public void sortArray()
{
  int i, j;
  int min, temp;

  for( i = 0; i < x-1; i++ )
  {
    min = i;

    for( j = i+1; j < x; j++ )
    {
      if( a[j] < a[min] )
      {
        min = j;
      }
    }

    temp = a[i];
    a[i] = a[min];
    a[min] = temp;
  }
}

==================

Now how to get the t(n) or as its known the worst case time complexity

flag

6 Answers

vote up 0 vote down check

@sara jons The slide set that you've referenced - and the algorithm therein

The complexity is being measured for each primitive/atomic operation in the for loop

for(j=0 ; j<n ; j++)
{
    //...    
}

The slides rate this loop as 2n+2 for the following reasons:

  • The initial set of j=0 (+1 op)
  • The comparison of j < n (n ops)
  • The increment of j++ (n ops)
  • The final condition to check if j < n (+1 op)
  • Secondly, the comparison within the for loop

    if(STudID == A[j])      
        return true;
    

    This is rated as n ops. Thus the result if you add up +1 op, n ops, n ops, +1 op, n ops = 3n+2 complexity. So T(n) = 3n+2

    Recognize that T(n) is not the same as O(n).

    link|flag
    ha. how'd I miss that. Thanks. – Nicholas Mancuso Dec 1 '08 at 17:05
    So guys if i want to solve the first question the selection sort the answer will be (2n+1)+(2n+1)+n = 5n+2 ?? I'm I right ? – Kevin Dente Dec 1 '08 at 17:12
    @Sara, You're not right. The for loops are multiplied not added. So (2n+1)+(2n+1) should read (2n+1) * (2n+1)... If you're looking for T(n) notation, then the condition j = i+1 throws a loop in the T(n) notation. Otherwise you're close for your O(n) notation. See harms answer. – LFSR Consulting Dec 1 '08 at 17:22
    No. Re-read what I posted about nested loops. – Nicholas Mancuso Dec 1 '08 at 17:25
    vote up 14 vote down

    That would be O(n^2).

    The reason is you have a single for loop nested in another for loop. The run time for the inner for loop, O(n), happens for each iteration of the outer for loop, which again is O(n). The reason each of these individually are O(n) is because they take a linear amount of time given the size of the input. The larger the input the longer it takes on a linear scale, n.

    To work out the math, which in this case is trivial, just multiple the complexity of the inner loop by the complexity of the outer loop. n * n = n^2. Because remember, for each n in the outer loop, you must again do n for the inner. To clarify: n times for each n.

    O(n * n).

    O(n^2)

    link|flag
    yeah. and assignments and swaps of atomic data is constant time, thus they won't add any complexity +1 – Johannes Schaub - litb Dec 1 '08 at 16:25
    vote up 0 vote down

    I found this case on some website can any one explain it to me

    bool LinearSearch(int A[ ] , int n , int StudID)

    {

    int j ;	
    for(j=0 ; j<n ; j++)
    
    	if(STudID == A[j])	
    		return true;	
    
    return false;
    

    }

    the solution they provide is:

    W(n) = (2n+2) + n = W(n) = 3n+2

    Why? as they answered this they considered the for-loop as 2n+2 and the If-statment as 1*n so what does this mean ?

    link|flag
    "some website"? Any particular web site? Any other context or background information that we might be able to use to determine what "some website" meant? – S.Lott Dec 1 '08 at 16:45
    I'm not so sure that analysis is correct. The loop is O(n) complexity. That loop will always do AT MOST n iterations. The if statements is constant complexity O(1). So it would be O(n*1) == O(n). – Nicholas Mancuso Dec 1 '08 at 16:47
    I agree with Nicholas – LFSR Consulting Dec 1 '08 at 16:48
    check it here I found it in this slides sy-stu.com/stu/PublicFiles/… – Kevin Dente Dec 1 '08 at 16:49
    I can see where he gets the +2, as 2 constant operations are done with each loop iteration, the comparison, and the increment. But, I'm still not entirely sure where he is getting 2n... And why isn't that person using proper notation? No Big-O, Big-Omega and Big-Theta? – Nicholas Mancuso Dec 1 '08 at 16:55
    show 4 more comments
    vote up 3 vote down

    By the way, you shouldn't mix up complexity (denoted by big-O) and the T function. The T function is the number of steps the algorithm has to go through for a given input.

    So, the value of T(n) is the actual number of steps, whereas O(something) denotes a complexity. By the conventional abuse of notation, T(n) = O( f(n) ) means that the function T(n) is of at most the same complexity as another function f(n), which will usually be the simplest possible function of its complexity class.

    This is useful because it allows us to focus on the big picture: We can now easily compare two algorithms that may have very different-looking T(n) functions by looking at how they perform "in the long run".

    link|flag
    vote up 1 vote down

    Another doctoral-comp flashback here.

    First, the T function is simply the amount of time (usually in some number of steps, about which more below) an algorithm takes to perform a task. What a "step" is, is somewhat defined by the use; for example, it's conventional to count the number of comparisons in sorting algorithms, but the number of elements searched in search algorithms.

    When we talk about the worst-case time of an algorithm, we usually express that with "big-O notation". Thus, for example, you hear that bubble sort takes O(n²) time. When we use big O notation, what we're really saying is that the growth of some function -- in this case T -- is no faster than the growth of some other function times a constant. That is

    T(n) = O(n²)

    means for any n, no matter how large, there is a constant k for which T(n) ≤ kn². A point of some confustion here is that we're using the "=" sign in an overloaded fashion: it doesn't mean the two are equal in the numerical sense, just that we are saying that T(n) is bounded by kn².

    In the example in your extended question, it looks like they're counting the number of comparisons in the for loop and in the test; it would help to be able to see the context and the question they're answering. In any case, though, it shows why we like big-O notation: W(n) here is O(n). (Proof: there exists a constant k, namely 5, for which W(n) ≤ k(3n)+2. It follows by the definition of O(n).)

    If you want to learn more about this, consult any good algorithms text, eg, Introduction to Algorithms, by Cormen et al.

    link|flag
    vote up 0 vote down

    write pseudo codes to search, insert and remove student information from the hash table. calculate the best and the worst case time complexities

    link|flag

    Your Answer

    Get an OpenID
    or

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