Follow

Translate

Friday, March 11, 2016

Bubble Sort

(Bubble Sort) BUBBLE(DATA, N)
Here DATA is an array with N elements. This algorithm sorts the elements in DATA.



1.   Repeat Steps 2 and 3 for K = 1 to N - 1.

2.   Set PTR : = 1.       [Initializes pass pointer PTR.]

3.     Repeat while PTR < N - K:    [Execute pass.]  // Less Than Equal

      (a)   If DATA[PTR]  > DATA[PTR + 1], then:
               Interchange DATA[PTR] and DATA[PTR + 1].
               [End of If Structure.]

     (b)  Set PTR : = PTR + 1.

           [End of inner Loop.]
     [End of Step 1 outer loop.]

4. Exit.
             

Related Posts:

  • Complexity;Space-Time Tradeoffs Briefly describe the notations of (a) the complexity of an algorithm and (b) the space-time tradeoff of algorithms  : (a)  The complexity of an algorithm is a function f(n) which measures the time and/or space use… Read More
  • Procedure P2.9A : CROSSOUT(A, N, K) 1.  If A[K] = 1, then : Return. 2.  Repeat for L = 2K to N by K: Set A[L] : 1. [End of loop] 3. Return. If You want to learn about the technology, computer science & engineering, web programming, freelanci… Read More
  • /* Another Methods of Traversing in a Linear Array  */ #include<stdio.h>         /* Header File that are called standard input output*/ #include<conio.h>  … Read More
  • Traversing in a Linear Array /* Traversing in a Linear Array  */ #include<stdio.h>         /* Header File that are called standard input output*/ #include<conio.h>     &n… Read More
  • Program to convert an Expression from Infix to Postfix #include<stdio.h> #include<stdlib.h> #define MAXCOLS 80 #define TRUE 1 #define FALSE 0 void postfix(char*, char *); int isoperand(char); void popandtest(struct stack*, char*, int*); int prcd(char, char); void p… Read More

0 comments:

Post a Comment