answersLogoWhite

0

About bubble sort

Updated: 11/10/2022
User Avatar

Wiki User

16y ago

Best Answer

bubblesort(int[] unsortedList){ 1)for(int i=1; iunsortedList[j]){ 4) int temp = unsortedList[i]; 5) unsortedList[i] = unsortedList[j]; 6) unsortedList[j] = temp; } } } return unsortedList } Explanation: 1: take each element in unsortedList, one at a time, and call the variable in it i 2:for each i, take each element further down the list one at a time and call this j 3:compare i to j, if i is grater than j, then j should go before anything i should go before so swap them. j will then be the new i, but is still in the correct place in the list because i was up until it saw j. i will be put back where it shopuld go next time round. Example: 1 4 3 7 5 6 I=14 3 7 5 6 I=4>j=3 1 3 4 7 5 6 I=34 7 5 6 I=47 5 6 I=7>j=5 1 3 4 5 7 6 I= 5>j=6 1 3 4 5 7 6 I=7>j=6 1 3 4 5 6 7 return 1 3 4 5 6 7 bubblesort(int[] unsortedList){ 1)for(int i=1; iunsortedList[j]){ 4) int temp = unsortedList[i]; 5) unsortedList[i] = unsortedList[j]; 6) unsortedList[j] = temp; } } } return unsortedList } Explanation: 1: take each element in unsortedList, one at a time, and call the variable in it i 2:for each i, take each element further down the list one at a time and call this j 3:compare i to j, if i is grater than j, then j should go before anything i should go before so swap them. j will then be the new i, but is still in the correct place in the list because i was up until it saw j. i will be put back where it shopuld go next time round. Example: 1 4 3 7 5 6 I=14 3 7 5 6 I=4>j=3 1 3 4 7 5 6 I=34 7 5 6 I=47 5 6 I=7>j=5 1 3 4 5 7 6 I= 5>j=6 1 3 4 5 7 6 I=7>j=6 1 3 4 5 6 7 return 1 3 4 5 6 7

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: About bubble sort
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is another name for bubble sort?

Bubble sort is also known as sinking sort.


Who invented the bubble sort?

ramesh


Bubble sort Extra or in space?

Bubble sort is an "in place" algorithm. Other than a temporary "switch" variable, no extra space is required.


What is bubble sort and explain with examples?

bubbles


Can you draw a flow chart for bubble sort?

no


What are some sorting rules for math?

Binary sort and bubble sort are two.


How do you sort the given contents of an array?

You would sort the given elements of an array by a bubble sort or heap sort code!!


What are the advantages for bubble sort?

Bubble sort has no practical applications other than that it is often cited as an example of how not to write an algorithm. Insert sort is the best algorithm for sorting small lists of items and is often used in conjunction with quick sort to sort larger lists. Like insert sort, bubble sort is simple to implement and is a stable sort (equal items remain in the same order they were input). However, insert sort uses copy or move operations rather than swaps (which is actually three operations per swap) and is therefore quicker. The only time a bubble sort will work quicker than insert sort is when the array is already sorted, which renders the entire algorithm redundant. A modified algorithm that specifically tests if an array is sorted or not would be more efficient than a single-pass bubble sort.


Can you modify the bubble sort algorithm to search to sort an array of characters instead of array of integers?

The bubble sort algorithm can be applied to an array of characters. Every character can be translated to an integer equivalent via the ascii table


Why is the Bubble Sort algorithm also referred ro as Sink Sort?

Bubble sort got its name because if you could watch the way your data was changing, on each iteration you would see the greatest number "bubble" to the top.Similarly, you could said that you would see the lowest number "sink" to the bottom.


Is it trueThe biggest advantage of the bubble sort algorithm is that values move only by one element at a time toward their final destination in the array?

This is false. The movement described is a disadvantageof bubble sort.


Why is a bubble sort often presented first when learning sorting methods?

Bubble sort is often taught first because it's a really simple sort, and quite easy to comprehend. Specifically in Python you should never write your own sort, but use the sorted() builtin function.