-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lesson 7 #1865
base: master
Are you sure you want to change the base?
Lesson 7 #1865
Conversation
|
||
"""вероятность получить при генерации уже отсортированный массив крайне мала, | ||
но данный флаг (flag_stop) можно оставить как "предохранитель" от такой вероятности""" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
выполнено
print(f'Время выполнения: ' | ||
f'{timeit.timeit("merge_sort(list_megre[:])", globals=globals(), number=1)} \n' | ||
f'Отсортированный массив: {merge_sort(list_megre[:])}') | ||
# время выполнения 0.00045000000682193786 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
выполнено
us_num = us_num | ||
gen_number = [random.randint(0, 100) for i in range(us_num)] | ||
return gen_number | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if us_num % 2 == 0:
us_num += 1 # нам нужен нечётный массив, поэтому + 1
для чего это?
вам нужно было запросить n и построить массив по формуле 2n+1
num.pop(num.index(max(num, key=lambda i: int(i)))) | ||
counter_stop += 1 | ||
return f'В отсортированном массиве: \n{seq} \n' \ | ||
f'Медиана равна: {max(num, key=lambda i: int(i))}\n' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
не прочитано ДЗ
"Массив размером 2m + 1, где m – натуральное число, заполнен случайным образом."
это важно, т.к.
при сортировке медиана будет просто по индексу m
это мы обсудили на уроке
No description provided.