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

Распутняк 4, 5, 6, 8, 10, 11, 16 #54

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

Conversation

arasputnyak
Copy link
Contributor

No description provided.

@arasputnyak arasputnyak changed the title Распутняк, 5 Распутняк 4, 5 Sep 25, 2015
if len(right) > 0:
result += right
return result
def sortirovka(lst):
Copy link
Owner

Choose a reason for hiding this comment

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

очень неудобно переключаться при чтении с английского на русский, поэтому, и по другим причинам, принято все переменные писать только английском, учтите на будущее, пожалуйста

@arasputnyak arasputnyak changed the title Распутняк 4, 5 Распутняк 4, 5, 6 Oct 2, 2015
@arasputnyak arasputnyak changed the title Распутняк 4, 5, 6 Распутняк 4, 5, 6, 8 Oct 10, 2015
@arasputnyak arasputnyak changed the title Распутняк 4, 5, 6, 8 Распутняк 4, 5, 6, 8, 10, 11 Nov 13, 2015
@arasputnyak arasputnyak changed the title Распутняк 4, 5, 6, 8, 10, 11 Распутняк 4, 5, 6, 8, 10, 11, 16 Dec 11, 2015

def Dijkstra(self, t):
self.initialize(t)
S = []
Copy link
Owner

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

Choose a reason for hiding this comment

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

забавно, что у вас путь от 0 до 3, но последний expected элемент 1.
призываю писать больше тестов и активнее ими пользоваться

@MikhailErofeev
Copy link
Owner

4 всё равно зависает на моих данных, операция вырезания 1 элемента массива очень дорогая и не нужна при мерже, предположительно из-за неё всё работает бесконечно долго

left = left[1:]

приму, но обязательно учтите на будущее
в 5 проблема одинаковых элементов не обновилась
в 6 нет поддержки отрицательных чисел
8 ок
в 10 у lst2 размер n^2, поэтому сложность цикла O(n^3)
в 11 падает тест [0, 10, 5, 10]. у вас нормально работают тесты, начинающиеся не с test?
16 ок

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