Notice: file_put_contents(): Write of 11451 bytes failed with errno=28 No space left on device in /var/www/tgoop/post.php on line 50

Warning: file_put_contents(): Only 4096 of 15547 bytes written, possibly out of free disk space in /var/www/tgoop/post.php on line 50
Computer Science@CScience1 P.3127
CSCIENCE1 Telegram 3127
Паттерн Strategy (Стратегия)

Strategy позволяет выбирать алгоритм выполнения задачи на этапе выполнения, а не на этапе компиляции. Это особенно полезно, когда у вас есть несколько способов выполнения одной и той же задачи.

Пример:
Представьте, что у вас есть приложение, которое может сортировать данные разными способами (быстрая сортировка, сортировка пузырьком и т.д.). С помощью паттерна Strategy вы можете легко переключаться между различными алгоритмами сортировки.

class SortStrategy:
def sort(self, data):
pass

class QuickSort(SortStrategy):
def sort(self, data):
return sorted(data)

class BubbleSort(SortStrategy):
def sort(self, data):
# Реализация сортировки пузырьком
return sorted(data)



tgoop.com/CScience1/3127
Create:
Last Update:

Паттерн Strategy (Стратегия)

Strategy позволяет выбирать алгоритм выполнения задачи на этапе выполнения, а не на этапе компиляции. Это особенно полезно, когда у вас есть несколько способов выполнения одной и той же задачи.

Пример:
Представьте, что у вас есть приложение, которое может сортировать данные разными способами (быстрая сортировка, сортировка пузырьком и т.д.). С помощью паттерна Strategy вы можете легко переключаться между различными алгоритмами сортировки.

class SortStrategy:
def sort(self, data):
pass

class QuickSort(SortStrategy):
def sort(self, data):
return sorted(data)

class BubbleSort(SortStrategy):
def sort(self, data):
# Реализация сортировки пузырьком
return sorted(data)

BY Computer Science


Share with your friend now:
tgoop.com/CScience1/3127

View MORE
Open in Telegram


Telegram News

Date: |

The main design elements of your Telegram channel include a name, bio (brief description), and avatar. Your bio should be: With the “Bear Market Screaming Therapy Group,” we’ve now transcended language. Judge Hui described Ng as inciting others to “commit a massacre” with three posts teaching people to make “toxic chlorine gas bombs,” target police stations, police quarters and the city’s metro stations. This offence was “rather serious,” the court said. In the next window, choose the type of your channel. If you want your channel to be public, you need to develop a link for it. In the screenshot below, it’s ”/catmarketing.” If your selected link is unavailable, you’ll need to suggest another option. While some crypto traders move toward screaming as a coping mechanism, many mental health experts have argued that “scream therapy” is pseudoscience. Scientific research or no, it obviously feels good.
from us


Telegram Computer Science
FROM American