-
Notifications
You must be signed in to change notification settings - Fork 20
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
Распутняк 4, 5, 6, 8, 10, 11, 16 #54
base: master
Are you sure you want to change the base?
Conversation
if len(right) > 0: | ||
result += right | ||
return result | ||
def sortirovka(lst): |
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.
очень неудобно переключаться при чтении с английского на русский, поэтому, и по другим причинам, принято все переменные писать только английском, учтите на будущее, пожалуйста
|
||
def Dijkstra(self, t): | ||
self.initialize(t) | ||
S = [] |
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.
зачем нужен S?
graph.add_direct_link(4, 3, 6) | ||
graph.add_direct_link(4, 0, 7) | ||
result = graph.shortest_path(0, 3) | ||
expect = [0, 2, 3, 1] |
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.
забавно, что у вас путь от 0 до 3, но последний expected элемент 1.
призываю писать больше тестов и активнее ими пользоваться
4 всё равно зависает на моих данных, операция вырезания 1 элемента массива очень дорогая и не нужна при мерже, предположительно из-за неё всё работает бесконечно долго left = left[1:] приму, но обязательно учтите на будущее |
No description provided.