مرتب کردن حبابى ،جور کردن حبابى کامپيوتر : سورت حبابىکلمات مرتبط(2)
جور کردن حبابی.
bubble sort
Microsoft Computer Dictionary
n. A sorting algorithm that starts at the end of a list with n elements and moves all the way through, testing the value of each adjacent pair of items and swapping them if they aren’t in the right order. The entire process is then repeated for the remaining n – 1 items in the list, and so on, until the list is completely sorted, with the largest value at the end of the list. A bubble sort is so named because the “lightest” item in a list (the smallest) will figuratively “bubble up” to the top of the list first; then the next-lightest item bubbles up to its position, and so on. See the illustration. Also called: exchange sort. See also algorithm, sort. Compare insertion sort, merge sort, quicksort.