-
Notifications
You must be signed in to change notification settings - Fork 314
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
homework_lesson_7 #1845
base: master
Are you sure you want to change the base?
homework_lesson_7 #1845
Conversation
Второй вариант выполняется быстрее. Моя доработка заключается в проверке ситуации | ||
когда один из элементов не выполнил ни одну перестановку с другими элементами массива. | ||
В такой ситуации attribute остается в значении False и сортировка прерывается. | ||
''' |
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.
выполнено
# Вывод: | ||
# На большом количестве данных сортировка слиянием показывает достаточно высокие | ||
# результаты, таким образом скорость уменьшается чуть больше чем на порядок, | ||
# почти так же как и увеличивается кол-во данных. |
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.
выполнено
|
||
[orig_list.remove(max(orig_list)) for _ in range(int(len(orig_list) / 2))] | ||
|
||
print("Медиана полученная удалением максимальных элементов: ", max(orig_list)) |
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.
мы договорились сделать
- решение с сортировкой
- без нее
- встроенной функцией
- выполнить замеры и сделать аналитику результатов
No description provided.