def gnome_sort_visual():
global array
i = 1
while i < len(array):
if i > 0 and array[i - 1] > array[i]:
array[i - 1], array[i] = array[i], array[i - 1]
screen.fill(WHITE)
for k, value in enumerate(array):
color = RED if k == i or k == i - 1 else BLUE
pygame.draw.rect(screen, color, (k * BAR_WIDTH, HEIGHT - value - 50, BAR_WIDTH - 2, value))
pygame.draw.rect(screen, RED, button_random)
pygame.draw.rect(screen, RED, button_algorithm)
pygame.draw.rect(screen, RED, button_sort)
screen.blit(font.render("Генерировать массив", True, WHITE), (button_random.x + 30, button_random.y + 5))
screen.blit(font.render("Отсортировать", True, WHITE), (button_sort.x + 30, button_sort.y + 5))
screen.blit(font.render(selected_algorithm, True, WHITE), (button_algorithm.x + 30, button_algorithm.y + 5))
pygame.display.flip()
time.sleep(0.02)
i -= 1 # Отступаем на шаг назад
else:
i += 1
void gnomeSort(sf::RenderWindow& window) {
int n = array.size();
int index = 0;
while (index < n) {
if (index == 0) {
index++;
}
if (array[index] >= array[index - 1]) {
index++;
}
else {
std::swap(array[index], array[index - 1]);
index--;
}
// Отображаем состояние массива после каждой итерации
window.clear(sf::Color::White);
for (int i = 0; i < n; i++) {
sf::RectangleShape bar(sf::Vector2f(BAR_WIDTH - 2, array[i]));
bar.setPosition(i * BAR_WIDTH, HEIGHT - array[i] - 50);
bar.setFillColor((i == index || i == index - 1) ? sf::Color::Red : sf::Color::Blue);
window.draw(bar);
}
window.display();
std::this_thread::sleep_for(std::chrono::milliseconds(20));
}
}