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
V - объем.
K - размер изображения.
I - количество бит на цвет.
N = 2^i, где:
N - количество цветов.
Дано:
K = 1280*1024.
N = 65536 цветов.
Найти: V.
N = 2^i.
65536 = 2^i.
I = 16 бит.
V = K * I.
V = 1280*1024*16 = 20971520 бит = 2621440 байт = 2560 кбайт = 2,5 мбайт.