Follow

Translate

Friday, March 11, 2016

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  each of the n - 1 = 5 Passes follow:
a square indicates that the pair of letters is compared and interchanged, and a circle indicates that the pair of letters is compared but not interchanged.


Pass 1.  P E O P L E,   E P O PLE,  E O P P L E
            E O P P L E     E O P L P E   E O P L E P


Pass 2.    E O P L E P,   E O P L E P,    E O P L E P
               E O L P E P,     E O L E P P

Pass 3.   E O L E P P,  E O L E P P,  E L O E P P
             E L E O P P

Pass 4.  E L E O P P,  E L E O P P,  E E L O P P

Pass 5.   E E L O P P,   E E L O P P  
If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE

Related Posts:

  • Inserting at the Beginning of a List Algorithm:   INSFIRST(INFO,  LINK,  START, AVAIL, ITEM) This algorithm inserts ITEM as the first node in the list. 1.     [OVERFLOW?]  If AVAIL = NULL , then : Write: OVERFLOW… Read More
  • Deleting the Node Following a Given Node Algorithm: DEL(INFO,  LINK,  START,  AVAIL,  LOC,  LOCP) This algorithm deletes the node N with location LOC,  LOCP is the location of the node which precedes N or , where N is the first node… Read More
  • Inserting after a Given Node Algorithm:  INSLOC(INFO, LINK, START, AVAIL, LOC, ITEM) This algorithm inserts ITEM so that ITEM follows the node with location LOC or inserts ITEM as the first node when LOC = NULL. 1.        … Read More
  • Inserting at the Beginning of a List Algorithm:   INSFIRST(INFO,  LINK,  START, AVAIL, ITEM) This algorithm inserts ITEM as the first node in the list. 1.     [OVERFLOW?]  If AVAIL = NULL , then : Write: OVERFLOW… Read More
  • Deleting the Node Following a Given Node Algorithm: DEL(INFO,  LINK,  START,  AVAIL,  LOC,  LOCP) This algorithm deletes the node N with location LOC,  LOCP is the location of the node which precedes N or , where N is the first node… Read More

0 comments:

Post a Comment