Logo Data Structures and Algorithms with Object-Oriented Design Patterns in Java
next up previous contents index

Average Running Times

 

In the previous section, we found the function, tex2html_wrap_inline57434, which gives the running time of Program gif as a function both of number of inputs, n, and of the actual input values. Suppose instead we are interested in a function tex2html_wrap_inline57442 which gives the running time on average for n inputs, regardless of the values of those inputs. In other words, if we run Program gif, a large number of times on a selection of random inputs of length n, what will the average running time be?

We can write the sum of the running times given in Table gif in the following form

  equation564

where tex2html_wrap_inline57448 is the probability that line 8 of the program is executed. The probability tex2html_wrap_inline57448 is given by

displaymath57436

That is, tex2html_wrap_inline57448 is the probability that the tex2html_wrap_inline57420 array entry, tex2html_wrap_inline57422, is larger than the maximum of all the preceding array entries, tex2html_wrap_inline57458.

In order to determine tex2html_wrap_inline57448, we need to know (or to assume) something about the distribution of input values. For example, if we know a priori that the array passed to the method findMaximum is ordered from smallest to largest, then we know that tex2html_wrap_inline57462. Conversely, if we know that the array is ordered from largest to smallest, then we know that tex2html_wrap_inline57464.

In the general case, we have no a priori knowledge of the distribution of the values in the input array. In this case, consider the tex2html_wrap_inline57420 iteration of the loop. In this iteration tex2html_wrap_inline57422 is compared with the maximum of the i values, tex2html_wrap_inline57458 preceding it in the array. Line 6 of Program gif is only executed if tex2html_wrap_inline57422 is the largest of the i+1 values tex2html_wrap_inline57478. All things being equal, we can say that this will happen with probability 1/(i+1). Thus

  eqnarray580

Substituting this expression for tex2html_wrap_inline57448 in Equation gif and simplifying the result we get

  eqnarray587

where tex2html_wrap_inline57484, is the tex2html_wrap_inline57486 harmonic number .


next up previous contents index

Bruno Copyright © 1998 by Bruno R. Preiss, P.Eng. All rights reserved.