Skip to content
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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

Aleksey-Kuznetsov-87
Copy link

No description provided.


"""вероятность получить при генерации уже отсортированный массив крайне мала,
но данный флаг (flag_stop) можно оставить как "предохранитель" от такой вероятности"""

Copy link
Owner

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
Copy link
Owner

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

Copy link
Owner

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'
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

не прочитано ДЗ
"Массив размером 2m + 1, где m – натуральное число, заполнен случайным образом."
это важно, т.к.

при сортировке медиана будет просто по индексу m
это мы обсудили на уроке

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants