def bubbleSort(arr):
n = len(arr)
count = 0
# Traverse through all array elements
for i in range(n-1):
# range(n) also work but outer loop will repeat one time more than needed.
# Last i elements are already in place
for j in range(0, n-i-1):
# traverse the array from 0 to n-i-1
# Swap if the element found is greater
# than the next element
if arr[j] > arr[j+1] :
arr[j], arr[j+1] = arr[j+1], arr[j]
count = count+1
return count
list = [8, 1, 7, 4, 3, 9, 2, 5, 6, 10]
count = bubbleSort(list)
print(count)
Объяснение:
ответ: 18
def bubbleSort(arr):
n = len(arr)
count = 0
# Traverse through all array elements
for i in range(n-1):
# range(n) also work but outer loop will repeat one time more than needed.
# Last i elements are already in place
for j in range(0, n-i-1):
# traverse the array from 0 to n-i-1
# Swap if the element found is greater
# than the next element
if arr[j] > arr[j+1] :
arr[j], arr[j+1] = arr[j+1], arr[j]
count = count+1
return count
list = [8, 1, 7, 4, 3, 9, 2, 5, 6, 10]
count = bubbleSort(list)
print(count)
Объяснение:
ответ: 18
Поделитесь своими знаниями, ответьте на вопрос:
1. 1024 Мбайт это ... Кбайт. 2. 80 бит информации это ... байт3. 4096 Кбайт это ... Мбайт4. 1, 4 Мбайт это ... бит.5. 1536 Кбайт+1536 Кбайт это ... Мбайт6. 1 Кбайт + 1, 5 Кбайт равно ... байт7. 2048 Мбайт это ... Гбайт8. 0, 49 МБайт это ... Байт9. 20000 байт это ... Кбайт10. 1, 54 ГБайт это ... Кбайт
1. 1024000
2. 10
3. 4.096
4. 8е+6
5. 3.072
6. 2000
7. 2
8.
9. 20
10. 1000000