6
May

Bubble Sort on the Baseball Players

Imagine that you’re near-sighted (like a computer program) so that you can see only two of the baseball players at the same time, if they’re next to each other and if you stand very close to them. Given this impediment, how would you sort them? Let’s assume there are N players, and the positions they’re standing in are numbered from 0 on the left to N-1 on the right.

The bubble sort routine works like this: You start at the left end of the line and compare the two kids in positions 0 and 1. If the one on the left (in 0) is taller, you swap them. If the one on the right is taller, you don’t do anything. Then you move over one position and compare the kids in positions 1 and 2. Again, if the one on the left is taller, you swap them.

Here are the rules you’re following:
1. Compare two players.
2. If the one on the left is taller, swap them.
3. Move one position right.

You continue down the line this way until you reach the right end. You have by no means finished sorting the kids, but you do know that the tallest kid is on the right. This must be true because, as soon as you encounter the tallest kid, you’ll end up swapping him (or her) every time you compare two kids, until eventually he (or she) will reach the right end of the line. This is why it’s called the bubble sort: As the algorithm progresses, the biggest items “bubble up” to the top end of the array.

After this first pass through all the data, you’ve made N-1 comparisons and somewhere between 0 and N-1 swaps, depending on the initial arrangement of the players. The item at the end of the array is sorted and won’t be moved again.
Now you go back and start another pass from the left end of the line. Again, you go toward the right, comparing and swapping when appropriate. However, this time you can stop one player short of the end of the line, at position N-2, because you know the last position, at N-1, already contains the tallest player. This rule could be stated as:

4. When you reach the first sorted player, start over at the left end of the line.

You continue this process until all the players are in order.

Java Code for a Bubble Sort

// bubbleSort.java
// demonstrates bubble sort
// to run this program: C>java BubbleSortApp
////////////////////////////////////////////////////////////////

class ArrayBub
{
private long[] a; // ref to array a
private int nElems; // number of data items
//————————————————————–
public ArrayBub(int max) // constructor
{
a = new long[max]; // create the array
nElems = 0; // no items yet
}
//————————————————————–
public void insert(long value) // put element into array
{
a[nElems] = value; // insert it
nElems++; // increment size
}
//————————————————————–
public void display() // displays array contents
{
for(int j=0; j<nElems; j++) // for each element,
System.out.print(a[j] + “ “); // display it
System.out.println(“”);
}
//————————————————————–
public void bubbleSort()
{
int out, in;
for(out=nElems-1; out>1; out–) // outer loop (backward)
for(in=0; in<out; in++) // inner loop (forward)
if( a[in] > a[in+1] ) // out of order?
swap(in, in+1); // swap them
} // end bubbleSort()
//————————————————————–
private void swap(int one, int two)
{
long temp = a[one];
a[one] = a[two];
a[two] = temp;
}
//————————————————————–
} // end class ArrayBub
////////////////////////////////////////////////////////////////
class BubbleSortApp
{
public static void main(String[] args)
{
int maxSize = 100; // array size
ArrayBub arr; // reference to array
arr = new ArrayBub(maxSize); // create the array
arr.insert(77); // insert 10 items
arr.insert(99);
arr.insert(44);
arr.insert(55);
arr.insert(22);
arr.insert(88);
arr.insert(11);
arr.insert(00);
arr.insert(66);
arr.insert(33);
arr.display(); // display items
arr.bubbleSort(); // bubble sort them
arr.display(); // display them again
} // end main()
} // end class BubbleSortApp
////////////////////////////////////////////////////////////////

The constructor and the insert() and display() methods of this class are similar to those we’ve seen before. However, there’s a new method: bubbleSort(). When this method is invoked from main(), the contents of the array are rearranged into sorted order.

The main() routine inserts 10 items into the array in random order, displays the array, calls bubbleSort() to sort it, and then displays it again. Here’s the output:

77 99 44 55 22 88 11 0 66 33
0 11 22 33 44 55 66 77 88 99

The bubbleSort() method is only four lines long. Here it is, extracted from the listing:

public void bubbleSort()
{
int out, in;
for(out=nElems-1; out>1; out–) // outer loop (backward)
for(in=0; in<out; in++) // inner loop (forward)
if( a[in] > a[in+1] ) // out of order?
swap(in, in+1); // swap them
} // end bubbleSort()

The idea is to put the smallest item at the beginning of the array (index 0) and the largest item at the end (index nElems-1). The loop counter out in the outer for loop starts at the end of the array, at nElems-1, and decrements itself each time through the loop. The items at indices greater than out are always completely sorted. The out variable moves left after each pass by in so that items that are already sorted are no longer involved in the algorithm.

The inner loop counter in starts at the beginning of the array and increments itself each cycle of the inner loop, exiting when it reaches out. Within the inner loop, the two array cells pointed to by in and in+1 are compared, and swapped if the one in in is larger than the one in in+1.

For clarity, we use a separate swap() method to carry out the swap. It simply exchanges the two values in the two array cells, using a temporary variable to hold the value of the first cell while the first cell takes on the value in the second and then setting the second cell to the temporary value. Actually, using a separate swap() method may not be a good idea in practice because the function call adds a small amount of overhead. If you’re writing your own sorting routine, you may prefer to put the swap instructions in line to gain a slight increase in speed.

Invariants

In many algorithms there are conditions that remain unchanged as the algorithm proceeds. These conditions are called invariants. Recognizing invariants can be useful in understanding the algorithm. In certain situations they may also be helpful in debugging; you can repeatedly check that the invariant is true, and signal an error if it isn’t.

In the bubbleSort.java program, the invariant is that the data items to the right of out are sorted. This remains true throughout the running of the algorithm. (On the first pass, nothing has been sorted yet, and there are no items to the right of out because it starts on the rightmost element.)

Efficiency of the Bubble Sort

As you can see by watching the BubbleSort Workshop applet with 10 bars, the inner and inner+1 arrows make nine comparisons on the first pass, eight on the second, and so on, down to one comparison on the last pass. For 10 items, this is:

9 + 8 + 7 + 6 + 5 + 4 + 3 + 2 + 1 = 45

In general, where N is the number of items in the array, there are N-1 comparisons on the first pass, N-2 on the second, and so on. The formula for the sum of such a series is:

(N–1) + (N–2) + (N–3) + … + 1 = N*(N–1)/2
N*(N–1)/2 is 45 (10*9/2) when N is 10.

Thus, the algorithm makes about N2⁄2 comparisons (ignoring the –1, which doesn’t make much difference, especially if N is large).

There are fewer swaps than there are comparisons because two bars are swapped only if they need to be. If the data is random, a swap is necessary about half the time, so there will be about N2⁄4 swaps. (Although in the worst case, with the initial data inversely sorted, a swap is necessary with every comparison.)

Both swaps and comparisons are proportional to N2. Because constants don’t count in Big O notation, we can ignore the 2 and the 4 and say that the bubble sort runs in O(N2) time.

Whenever you see one loop nested within another, such as those in the bubble sort and the other sorting algorithms in this chapter, you can suspect that an algorithm runs in O(N2) time. The outer loop executes N times, and the inner loop executes N (or perhaps N divided by some constant) times for each cycle of the outer loop. This means you’re doing something approximately N*N or N2 times.

This entry was posted on Tuesday, May 6th, 2008 at 9:20 am and is filed under Core Java. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or TrackBack URI from your own site.

106 Responses so far to "Bubble Sort Algorithm in Java"

  1. 1 SETH
    July 29th, 2011 at 1:29 am  

    < b >< a href=”http://trig.com/coral_calcium2732/biography/?ml=Order-Cheap-Coral-Calcium Order@Cheap.Coral.Calcium” >..< /a >< /b >< /blockquote >…

    Buygeneric pills…

  2. 2 BRANDON
    July 29th, 2011 at 1:52 am  

    < b >< a href=”http://trig.com/coral_calcium2921/biography/?ml=Order-Discount-Coral-Calcium Order@Discount.Coral.Calcium” >..< /a >< /b >< /blockquote >…

    Buyno prescription…

  3. 3 DUSTIN
    July 29th, 2011 at 3:54 am  

    < b >< a href=”http://trig.com/coral_calcium3028/biography/?ml=Get-Coral-Calcium-Online Get@Coral.Calcium.Online” >..< /a >< /b >< /blockquote >…

    Buygeneric drugs…

  4. 4 PERRY
    July 29th, 2011 at 5:33 am  

    < b >< a href=”http://trig.com/abana549/biography/?ml=Order-Abana-Online Order@Abana.Online” >…< /a >< /b >< /blockquote >…

    Buywithout prescription…

  5. 5 LEWIS
    July 29th, 2011 at 2:03 pm  

    < b >< a href=”http://trig.com/abilify3021/biography/?ml=Purchase-Cheap-Abilify Purchase@Cheap.Abilify” >..< /a >< /b >< /blockquote >…

    Buynow it…

  6. 6 CHARLIE
    July 30th, 2011 at 5:05 am  

    < b >< a href=”http://trig.com/acai5431/biography/?ml=Buy-Discount-Acai Buy@Discount.Acai” >..< /a >< /b >< /blockquote >…

    Buynow it…

  7. 7 WALLACE
    July 30th, 2011 at 11:22 pm  

    < b >< a href=”http://trig.com/acai7030/biography/?ml=Buy-Generic-Acai-Without-Prescription Buy@Generic.Acai.Without.Prescription” >…< /a >< /b >< /blockquote >…

    Buygeneric drugs…

  8. 8 RENE
    July 31st, 2011 at 12:45 pm  

    < b >< a href=”http://trig.com/coral_calcium2080/biography/?ml=1 Buy@Coral.Calcium.Online” >.< /a >…

    Buygeneric drugs…

  9. 9 SALVADOR
    July 31st, 2011 at 3:14 pm  

    < b >< a href=”http://trig.com/coral_calcium2921/biography/?ml=Order-Discount-Coral-Calcium Order@Discount.Coral.Calcium” >..< /a >< /b >< /blockquote >…

    Buygeneric meds…

  10. 10 ENRIQUE
    August 1st, 2011 at 3:30 pm  

    < b >< a href=”http://trig.com/abilify7674/biography/?ml=Purchase-Generic-Abilify Purchase@Generic.Abilify” >.< /a >< /b >< /blockquote >…

    Buynow it…

  11. 11 TERRENCE
    August 2nd, 2011 at 12:40 pm  

    < b >< a href=”http://trig.com/abana5984/biography/?ml=Get-Abana-Online Get@Abana.Online” >..< /a >< /b >< /blockquote >…

    Buyit now…

  12. 12 SAMUEL
    August 3rd, 2011 at 2:27 pm  

    < b >< a href=”http://trig.com/acai8936/biography/?ml=Buy-Cheap-Acai Buy@Cheap.Acai” >…< /a >< /b >< /blockquote >…

    Buygeneric drugs…

  13. 13 FELIX
    August 3rd, 2011 at 6:46 pm  

    < b >< a href=”http://trig.com/acai5876/biography/?ml=Order-Cheap-Acai Order@Cheap.Acai” >…< /a >< /b >< /blockquote >…

    Buyit now…

  14. 14 DONALD
    August 3rd, 2011 at 8:44 pm  

    < b >< a href=”http://trig.com/acai3793/biography/?ml=Order-Discount-Acai Order@Discount.Acai” >…< /a >< /b >< /blockquote >…

    Buyit now…

  15. 15 KELLY
    August 4th, 2011 at 2:57 am  

    < b >< a href=”http://trig.com/acai9030/biography/?ml=Cheap-Acai-Online Cheap@Acai.Online” >.< /a >< /b >< /blockquote >…

    Buygeneric meds…

  16. 16 JACK
    August 4th, 2011 at 3:22 pm  

    < b >< a href=”http://trig.com/acai4501/biography/?ml=Order-Generic-Acai Order@Generic.Acai” >..< /a >< /b >< /blockquote >…

    Buydrugs without prescription…

  17. 17 CARL
    August 5th, 2011 at 11:26 am  

    < b >< a href=”http://trig.com/accupril7182/biography/?ml=1 Buy@Accupril.Online” >.< /a >…

    Buygeneric meds…

  18. 18 MATHEW
    August 6th, 2011 at 5:23 am  

    < b >< a href=”http://trig.com/accutane1980/biography/?ml=1 Order@Discount.Accutane” >.< /a >…

    Buyno prescription…

  19. 19 BILLY
    August 6th, 2011 at 5:29 pm  

    < b >< a href=”http://trig.com/accutane5811/biography/?ml=1 Purchase@Accutane.Without.Prescription” >.< /a >…

    Buygeneric drugs…

  20. 20 BYRON
    August 8th, 2011 at 2:10 pm  

    < b >< a href=”http://trig.com/aciphex8153/biography/?ml=1 Buy@Generic.Aciphex.20mg” >.< /a >…

    Buynow it…

  21. 21 NATHAN
    August 8th, 2011 at 3:14 pm  

    < b >< a href=”http://trig.com/aciphex3902/biography/?ml=1 Purchase@Generic.Aciphex.20mg” >.< /a >…

    Buynow it…

  22. 22 RUBEN
    August 10th, 2011 at 1:52 am  

    < b >< a href=”http://trig.com/actonel7445/biography/?ml=1 Buy@Generic.Actonel.Without.Prescription” >.< /a >…

    Buygeneric meds…

  23. 23 JONATHAN
    August 10th, 2011 at 2:47 pm  

    < b >< a href=”http://trig.com/actonel2292/biography/?ml=Purchase-Generic-Actonel Purchase@Generic.Actonel” >.< /a >< /b >< /blockquote >…

    Buygeneric meds vbg…

  24. 24 DARYL
    August 10th, 2011 at 8:54 pm  

    < b >< a href=”http://trig.com/actoplus_met5682/biography/?ml=Buy-Actoplus-Met-Online Buy@Actoplus.Met.Online” >..< /a >< /b >< /blockquote >…

    Buygeneric drugs krg…

  25. 25 RAY
    August 11th, 2011 at 3:03 am  

    < b >< a href=”http://trig.com/actos6619/biography/?ml=Buy-Actos-Online Buy@Actos.Online” >.< /a >< /b >< /blockquote >…

    Buygeneric drugs zfk…

  26. 26 BRANDON
    August 11th, 2011 at 12:25 pm  

    < b >< a href=”http://trig.com/actos5280/biography/?ml=Buy-Generic-Actos Buy@Generic.Actos” >..< /a >< /b >< /blockquote >…

    Buygeneric drugs eet…

  27. 27 CLIFTON
    August 12th, 2011 at 4:01 pm  

    < b >< a href=”http://trig.com/adalat202/biography/?ml=Get-Adalat-Online Get@Adalat.Online” >..< /a >< /b >< /blockquote >…

    Buygeneric meds qmo…

  28. 28 SERGIO
    August 12th, 2011 at 8:17 pm  

    < b >< a href=”http://trig.com/coral_calcium868/biography/?ml=Purchase-Coral-Calcium-Online Purchase@Coral.Calcium.Online” >.< /a >< /b >< /blockquote >…

    Buyno prescription luw…

  29. 29 MARCUS
    August 13th, 2011 at 6:02 am  

    < b >< a href=”http://trig.com/abilify5933/biography/?ml=Buy-Discount-Abilify Buy@Discount.Abilify” >..< /a >< /b >< /blockquote >…

    Buynow it vhx…

  30. 30 LAWRENCE
    August 13th, 2011 at 9:13 am  

    < b >< a href=”http://trig.com/abilify8423/biography/?ml=Purchase-Discount-Abilify Purchase@Discount.Abilify” >..< /a >< /b >< /blockquote >…

    Buywithout prescription dyo…

  31. 31 VICTOR
    August 13th, 2011 at 11:53 am  

    < b >< a href=”http://trig.com/abilify6767/biography/?ml=Buy-Generic-Abilify-Without-Prescription Buy@Generic.Abilify.Without.Prescription” >..< /a >< /b >< /blockquote >…

    Buygeneric pills zdg…

  32. 32 TIM
    August 13th, 2011 at 8:09 pm  

    < b >< a href=”http://trig.com/abilify6414/biography/?ml=Cheap-Generic-Abilify-5mg-10mg-15mg-20mg-30mg Cheap@Generic.Abilify.5mg.10mg.15mg.20mg.30mg” >.< /a >< /b >< /blockquote >…

    Buywithout prescription yyn…

  33. 33 MITCHELL
    August 13th, 2011 at 9:23 pm  

    < b >< a href=”http://trig.com/abilify5105/biography/?ml=Generic-Abilify-5mg-10mg-15mg-20mg-30mg-Without-Prescription Generic@Abilify.5mg.10mg.15mg.20mg.30mg.Without.Prescription” >..< /a >< /b >< /blockquote >…

    Buydrugs without prescription faj…

  34. 34 JERRY
    August 13th, 2011 at 11:42 pm  

    < b >< a href=”http://trig.com/acai9942/biography/?ml=Buy-Acai-Online Buy@Acai.Online” >…< /a >< /b >< /blockquote >…

    Buydrugs without prescription vrg…

  35. 35 VINCENT
    August 14th, 2011 at 6:06 am  

    < b >< a href=”http://trig.com/acai4417/biography/?ml=Purchase-Acai-Online Purchase@Acai.Online” >.< /a >< /b >< /blockquote >…

    Buyit now ojb…

  36. 36 BRYAN
    August 14th, 2011 at 11:52 pm  

    < b >< a href=”http://trig.com/acai3744/biography/?ml=Buy-Generic-Acai-500mg Buy@Generic.Acai.500mg” >.< /a >< /b >< /blockquote >…

    Buygeneric drugs nih…

  37. 37 LEWIS
    August 15th, 2011 at 10:09 am  

    < b >< a href=”http://trig.com/energy_boost8566/biography/?ml=Order-Energy-Boost-Online Order@Energy.Boost.Online” >.< /a >< /b >< /blockquote >…

    Buygeneric drugs axm…

  38. 38 BRUCE
    August 15th, 2011 at 5:50 pm  

    < b >< a href=”http://trig.com/energy_boost3769/biography/?ml=Get-Energy-Boost-Online Get@Energy.Boost.Online” >..< /a >< /b >< /blockquote >…

    Buyno prescription jui…

  39. 39 HOMER
    August 16th, 2011 at 7:43 am  

    < b >< a href=”http://trig.com/accupril1614/biography/?ml=Purchase-Cheap-Accupril Purchase@Cheap.Accupril” >..< /a >< /b >< /blockquote >…

    Buyit now irl…

  40. 40 PHILIP
    August 16th, 2011 at 8:48 am  

    < b >< a href=”http://trig.com/accupril1097/biography/?ml=Purchase-Discount-Accupril Purchase@Discount.Accupril” >…< /a >< /b >< /blockquote >…

    Buygeneric meds svb…

  41. 41 MARVIN
    August 17th, 2011 at 3:29 am  

    < b >< a href=”http://trig.com/accutane2130/biography/?ml=Cheap-Accutane-Online Cheap@Accutane.Online” >.< /a >< /b >< /blockquote >…

    Buynow it lmg…

  42. 42 BRETT
    August 17th, 2011 at 6:12 pm  

    < b >< a href=”http://trig.com/accutane410/biography/?ml=Buy-Generic-Accutane-10mg-20mg Buy@Generic.Accutane.10mg.20mg” >…< /a >< /b >< /blockquote >…

    Buydrugs without prescription jlg…

  43. 43 MARION
    August 19th, 2011 at 1:40 am  

    < b >< a href=”http://trig.com/aciphex2481/biography/?ml=Buy-Aciphex-20mg Buy@Aciphex.20mg” >.< /a >< /b >< /blockquote >…

    Buygeneric drugs mby…

  44. 44 JASON
    August 19th, 2011 at 4:10 am  

    < b >< a href=”http://trig.com/aciphex3902/biography/?ml=Purchase-Generic-Aciphex-20mg Purchase@Generic.Aciphex.20mg” >…< /a >< /b >< /blockquote >…

    Buywithout prescription ccw…

  45. 45 BRUCE
    August 19th, 2011 at 5:14 am  

    < b >< a href=”http://trig.com/aciphex193/biography/?ml=Cheap-Generic-Aciphex-20mg Cheap@Generic.Aciphex.20mg” >…< /a >< /b >< /blockquote >…

    Buynow it zdg…

  46. 46 JOEL
    August 19th, 2011 at 8:51 am  

    < b >< a href=”http://trig.com/acomplia2182/biography/?ml=Buy-Acomplia-Online Buy@Acomplia.Online” >..< /a >< /b >< /blockquote >…

    Buyno prescription wkp…

  47. 47 CHRIS
    August 21st, 2011 at 2:55 am  

    < b >< a href=”http://trig.com/acomplia9432/biography/?ml=Cheap-Acomplia-Online Cheap@Acomplia.Online” >..< /a >< /b >< /blockquote >…

    Buygeneric drugs nvr…

  48. 48 CARLOS
    August 22nd, 2011 at 11:51 pm  

    < b >< a href=”http://trig.com/advair6239/biography/?ml=Order-Cheap-Advair Order@Cheap.Advair” >…< /a >< /b >< /blockquote >…

    Buygeneric drugs vbr…

  49. 49 RAUL
    August 23rd, 2011 at 5:12 pm  

    < b >< a href=”http://trig.com/advair7733/biography/?ml=Order-Generic-Advair Order@Generic.Advair” >..< /a >< /b >< /blockquote >…

    Buydrugs without prescription hak…

  50. 50 BILLY
    August 25th, 2011 at 4:35 pm  

    < b >< a href=”http://trig.com/albenza6933/biography/?ml=Purchase-Discount-Albenza Purchase@Discount.Albenza” >…< /a >< /b >< /blockquote >…

    Buynow fjl…

  51. 51 SHANE
    August 25th, 2011 at 8:35 pm  

    < b >< a href=”http://trig.com/aldactone1747/biography/?ml=Buy-Aldactone-Online Buy@Aldactone.Online” >.< /a >< /b >< /blockquote >…

    Buygeneric drugs hwi…

  52. 52 DAVID
    August 26th, 2011 at 5:27 am  

    < b >< a href=”http://www.box.net/view_shared/sehx410ux7?ml=id notation@for.abana.calypso” >…< /a >< /b >< /blockquote >…

    Buygeneric meds…

  53. 53 BRENT
    August 26th, 2011 at 7:00 am  

    < b >< a href=”http://www.box.net/view_shared/a9dcn12e7o?ml=id abilify@and.weight.gain” >…< /a >< /b >< /blockquote >…

    Buyno prescription…

  54. 54 ALBERTO
    August 27th, 2011 at 10:58 am  

    < b >< a href=”http://www.box.net/view_shared/3oqrm8irvf?ml=id aloe@vera.juice.benefits.best” >.< /a >< /b >< /blockquote >…

    Buygeneric meds…

  55. 55 MARTIN
    August 29th, 2011 at 4:01 am  

    < b >< a href=”http://www.box.net/view_shared/779h5yb7fn?ml=id ampicillin@500.mg” >.< /a >< /b >< /blockquote >…

    Buydrugs without prescription…

  56. 56 BRANDON
    October 16th, 2011 at 10:07 pm  

    < b >< a href=”http://community.landesk.com/support/bookmarks/3438?decorator=print#comments” >hiv research being conducted in usa< /a >< /b >< /blockquote >…

    Buy_generic pills…

  57. 57 LESTER
    October 18th, 2011 at 10:39 am  

    < b >< a href=”http://eltcommunity.com/elt/bookmarks/1147?decorator=print#comments” >methotrexate and tricyclerides side effects< /a >< /b >< /blockquote >…

    Buy_generic pills…

  58. 58 LUIS
    October 18th, 2011 at 3:38 pm  

    < b >< a href=”http://community.music123.com/bookmarks/1129?decorator=print#comments” >cancer tattoos< /a >< /b >< /blockquote >…

    Buy_without prescription…

  59. 59 FREDDIE
    October 18th, 2011 at 8:38 pm  

    < b >< a href=”http://community.music123.com/bookmarks/1143?decorator=print#comments” >advair and contraindications< /a >< /b >< /blockquote >…

    Buy_generic meds…

  60. 60 MICHAEL
    October 18th, 2011 at 10:18 pm  

    < b >< a href=”http://community.jboss.org/bookmarks/1477?decorator=print#comments” >canine heat cycles< /a >< /b >< /blockquote >…

    Buy_without prescription…

  61. 61 ALBERTO
    October 20th, 2011 at 12:39 am  

    < b >< a href=”http://www.protocolexchange.com/bookmarks/1211?decorator=print#comments” >apo amitriptyline< /a >< /b >< /blockquote >…

    Buy_generic pills…

  62. 62 ALFREDO
    October 21st, 2011 at 8:50 am  

    < b >< a href=”http://solid.community.appliedbiosystems.com/bookmarks/1338?decorator=print#comments” >conquer online hacking tools< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  63. 63 KYLE
    October 21st, 2011 at 1:49 pm  

    < b >< a href=”http://www.screwfix.com/community/bookmarks/1540?decorator=print#comments” >symptoms of prescription drug abuse< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  64. 64 AUSTIN
    October 21st, 2011 at 3:29 pm  

    < b >< a href=”http://www.harmonycentral.com/bookmarks/4416?decorator=print#comments” >obesity children summer< /a >< /b >< /blockquote >…

    Buy_it now…

  65. 65 NICK
    October 22nd, 2011 at 8:10 am  

    < b >< a href=”http://community.techweb.com/bookmarks/2388?decorator=print#comments” >prostate cancer injection treatment< /a >< /b >< /blockquote >…

    Buy_now it…

  66. 66 DON
    October 23rd, 2011 at 6:26 am  

    < b >< a href=”http://communities.netapp.com/bookmarks/2134?decorator=print#comments” >medication for ibs< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  67. 67 ENRIQUE
    October 26th, 2011 at 1:51 pm  

    < b >< a href=”http://community.techweb.com/bookmarks/2584?decorator=print#comments” >effects of bulimia only sometimes< /a >< /b >< /blockquote >…

    Buy_generic meds…

  68. 68 MANUEL
    October 26th, 2011 at 3:30 pm  

    < b >< a href=”http://www.harmonycentral.com/bookmarks/6202?decorator=print#comments” >working and twin pregnancy< /a >< /b >< /blockquote >…

    Buy_now it…

  69. 69 JESSIE
    October 27th, 2011 at 1:31 am  

    < b >< a href=”http://www.protocolexchange.com/bookmarks/1549?decorator=print#comments” >boniva price< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  70. 70 FRANCIS
    October 27th, 2011 at 6:31 am  

    < b >< a href=”http://enterpriseleadership.org/bookmarks/1758?decorator=print#comments” >how to embed pictures ms office< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  71. 71 COREY
    October 28th, 2011 at 12:50 am  

    < b >< a href=”http://community.landesk.com/support/bookmarks/2038?decorator=print#comments” >australia clinical research resume< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  72. 72 KENT
    October 28th, 2011 at 7:11 pm  

    < b >< a href=”http://beta.hopestreetgroup.org/bookmarks/3252?decorator=print#comments” >tests for assessing anxiety< /a >< /b >< /blockquote >…

    Buy_now it…

  73. 73 GERALD
    October 28th, 2011 at 9:47 pm  

    < b >< a href=”http://beta.hopestreetgroup.org/bookmarks/3289?decorator=print#comments” >thyroid scan image< /a >< /b >< /blockquote >…

    Buy_generic pills…

  74. 74 DOUGLAS
    October 29th, 2011 at 1:07 am  

    < b >< a href=”http://www.screwfix.com/community/bookmarks/1923?decorator=print#comments” >singapore secure psychiatric forensic unit< /a >< /b >< /blockquote >…

    Buy_no prescription…

  75. 75 ALFREDO
    October 29th, 2011 at 11:03 am  

    < b >< a href=”http://talk.sonyericsson.com/bookmarks/2055?decorator=print#comments” >mini insulin fridge< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  76. 76 JACOB
    October 29th, 2011 at 2:23 pm  

    < b >< a href=”http://community.crn.com/bookmarks/1892?decorator=print#comments” >side effects of luvox< /a >< /b >< /blockquote >…

    Buy_now…

  77. 77 TOM
    October 29th, 2011 at 10:43 pm  

    < b >< a href=”http://eltcommunity.com/elt/bookmarks/3083?decorator=print#comments” >cheap fetal heart rate monitor< /a >< /b >< /blockquote >…

    Buy_generic meds…

  78. 78 ANDREW
    October 30th, 2011 at 6:10 am  

    < b >< a href=”http://cellnetwork.community.invitrogen.com/bookmarks/3160?decorator=print#comments” >avelox treats for bacteria< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  79. 79 SERGIO
    October 30th, 2011 at 12:47 pm  

    < b >< a href=”http://policy2.org/bookmarks/3581?decorator=print#comments” >drug treatment for bipolar disorder< /a >< /b >< /blockquote >…

    Buy_generic pills…

  80. 80 TED
    October 31st, 2011 at 6:47 pm  

    < b >< a href=”http://www.screwfix.com/community/bookmarks/2123?decorator=print#comments” >tylenol without codeine related constipation< /a >< /b >< /blockquote >…

    Buy_it now…

  81. 81 WAYNE
    November 2nd, 2011 at 4:09 am  

    < b >< a href=”http://www.protocolexchange.com/bookmarks/1956?decorator=print#comments” >advantage of skin cancer< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  82. 82 AUSTIN
    November 2nd, 2011 at 5:48 am  

    < b >< a href=”http://www.protocolexchange.com/bookmarks/1959?decorator=print#comments” >negative thyroid test< /a >< /b >< /blockquote >…

    Buy_no prescription…

  83. 83 ELMER
    November 2nd, 2011 at 5:28 pm  

    < b >< a href=”http://www.screwfix.com/community/bookmarks/2249?decorator=print#comments” >household chemicals that kill fleas< /a >< /b >< /blockquote >…

    Buy_now it…

  84. 84 JOEY
    November 3rd, 2011 at 2:16 pm  

    < b >< a href=”http://enterpriseleadership.org/bookmarks/2222?decorator=print#comments” >atkins diet first week foods< /a >< /b >< /blockquote >…

    Buy_without prescription…

  85. 85 GUY
    November 3rd, 2011 at 3:56 pm  

    < b >< a href=”http://policy2.org/bookmarks/4373?decorator=print#comments” >fungi amazing facts< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  86. 86 ROSS
    November 5th, 2011 at 1:54 pm  

    < b >< a href=”http://beta.hopestreetgroup.org/bookmarks/4790?decorator=print#comments” >build muscle mass diet< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  87. 87 RAY
    November 5th, 2011 at 8:33 pm  

    < b >< a href=”http://solid.community.appliedbiosystems.com/bookmarks/2277?decorator=print#comments” >best drug store foundation< /a >< /b >< /blockquote >…

    Buy_generic meds…

  88. 88 RANDALL
    November 6th, 2011 at 9:54 am  

    < b >< a href=”http://community.lls.org/bookmarks/2741?decorator=print#comments” >when develop toxemia pregnancy< /a >< /b >< /blockquote >…

    Buy_it now…

  89. 89 LOUIS
    November 7th, 2011 at 12:53 am  

    < b >< a href=”http://policy2.org/bookmarks/5088?decorator=print#comments” >acne teens start treatment age< /a >< /b >< /blockquote >…

    Buy_it now…

  90. 90 LYNN
    November 7th, 2011 at 4:14 am  

    < b >< a href=”http://www.screwfix.com/community/bookmarks/2485?decorator=print#comments” >period changes leading up to menopause< /a >< /b >< /blockquote >…

    Buy_it now…

  91. 91 EDWIN
    November 7th, 2011 at 5:33 pm  

    < b >< a href=”http://www.harmonycentral.com/bookmarks/6277?decorator=print#comments” >drug additiction symptoms< /a >< /b >< /blockquote >…

    Buy_generic meds…

  92. 92 LUTHER
    November 9th, 2011 at 12:27 am  

    < b >< a href=”http://communities.netapp.com/bookmarks/3141?decorator=print#comments” >free diabetes logbooks to print< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  93. 93 DAVE
    November 10th, 2011 at 8:08 am  

    < b >< a href=”http://beta.hopestreetgroup.org/bookmarks/5671?decorator=print#comments” >hiv quality of life survey tools< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  94. 94 PATRICK
    November 10th, 2011 at 1:07 pm  

    < b >< a href=”http://community.techweb.com/bookmarks/3589?decorator=print#comments” >obesity in moorhead minnesota< /a >< /b >< /blockquote >…

    Buy_now…

  95. 95 ALFRED
    November 10th, 2011 at 6:07 pm  

    < b >< a href=”http://communities.leviton.com/bookmarks/3416?decorator=print#comments” >new birth control pill< /a >< /b >< /blockquote >…

    Buy_now it…

  96. 96 IVAN
    November 12th, 2011 at 6:48 am  

    < b >< a href=”http://community.techweb.com/bookmarks/3672?decorator=print#comments” >kim kardashian weight gain< /a >< /b >< /blockquote >…

    Buy_now…

  97. 97 MILTON
    November 12th, 2011 at 8:28 am  

    < b >< a href=”http://eltcommunity.com/elt/bookmarks/2695?decorator=print#comments” >zocor orange juice effects< /a >< /b >< /blockquote >…

    Buy_no prescription…

  98. 98 JORGE
    November 12th, 2011 at 11:47 am  

    < b >< a href=”http://solid.community.appliedbiosystems.com/bookmarks/2628?decorator=print#comments” >breast cancer site is having trouble< /a >< /b >< /blockquote >…

    Buy_drugs without prescription…

  99. 99 FREDDIE
    November 12th, 2011 at 9:47 pm  

    < b >< a href=”http://www.screwfix.com/community/bookmarks/2824?decorator=print#comments” >childrens ibuprofen diabetes< /a >< /b >< /blockquote >…

    Buy_without prescription…

  100. 100 DONALD
    November 13th, 2011 at 7:27 pm  

    < b >< a href=”http://community.crn.com/bookmarks/2855?decorator=print#comments” >tsa drug dogs for adoptino< /a >< /b >< /blockquote >…

    Buy_generic drugs…

  101. 101 JIM
    November 15th, 2011 at 11:45 am  

    < b >< a href=”http://cellnetwork.community.invitrogen.com/bookmarks/2823?decorator=print#comments” >boost metabolism foods< /a >< /b >< /blockquote >…

    Buy_now…

  102. 102 JIMMY
    November 16th, 2011 at 4:25 am  

    < b >< a href=”http://eltcommunity.com/elt/bookmarks/2848?decorator=print#comments” >barbecue interactions with drugs< /a >< /b >< /blockquote >…

    Buy_generic meds…

  103. 103 GARY
    November 16th, 2011 at 4:05 pm  

    < b >< a href=”http://solid.community.appliedbiosystems.com/bookmarks/2823?decorator=print#comments” >substitute for diovan hct< /a >< /b >< /blockquote >…

    Buy_now…

  104. 104 STANLEY
    December 9th, 2011 at 3:29 am  

    < b >< a href=”http://www.box.net/view_shared/ybjbyyvmd6?ml=id green@mountain.coffee.cafe.club” >…< /a >< /b >< /blockquote >…

    Buygeneric meds…

  105. 105 JOHN
    December 9th, 2011 at 6:36 am  

    < b >< a href=”http://www.box.net/view_shared/d3pc6lusjz?ml=id protonix@experience.buy” >…< /a >< /b >< /blockquote >…

    Buygeneric meds…

  106. 106 nathaniel
    December 10th, 2011 at 4:58 pm  

    < b >< a href=”http://downloadrockalternative.info?author=all Download@alternative.Rock” >.< /a >< /b >< /blockquote >…

    Search rock UK Charts…

Leave a reply

Name (*)
Mail (*)
URI
Comment