Follow

Translate

Wednesday, May 4, 2016

what is the Complexity of Bubble Sort?

Complexity of Bubble Sort : The time for a sorting algorithm is measured in terms of the number of comparisons. The number f(n) of comparisons in the bubble sort is easily computed.Specially, there are n - 1 comparisons during the first pass, which places the largest element in the last position; there are n - 2 comparisons in the second step, which places the second largest element in the next-to-last position; and so on.  Thus

f(n) = (n-1) + (n-2) + .......... + 2+1 = n(n-1)/2 - n2/2 +0(n) = 0(n2)

In the other words, the time required to execute the bubble sort algorithm is propositional to n2 where n is the number of input items.

Propellerads

If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE

Related Posts:

  • Example Using the bubble sort algorithm Using the bubble sort algorithm, Algorithm 4.4, find the number C of comparisons and the number D of interchanges which alphabetize the n = 6 letters in PEOPLE. The sequence of pairs of letters which are compared in … Read More
  • Number Sorted Of Bubble Sort Suppose the following numbers are stored in an array A:                             … Read More
  • Binary Search Algorithm 4.6:  (Binary Search)  BINARY(DATA, LB, UB, ITEM, LOC) Here DATA ia a sorted array with lower bound LB and upper bound UB, and ITEM is a given item of information. The variables BEG, END and MID denote,… Read More
  • Deleting From a Linear Array Algorithm:  (Deleting From a Linear Array)  DELETE (LA, N, K, ITEM) Here LA is a linear array with N elements and K is a positive integer such that K < N. This algorithms Deletes… Read More
  • Inserting Into a Linear Array Inserting Into a Linear Array Algorithm:  (Inserting into a Linear Array) INSERT (LA, N, K, ITEM) Here LA is a linear array with N elements and K is a positive integer such that K < N. This algorithms inserts an ele… Read More

0 comments:

Post a Comment