design-patterns/behavioral/README.md
Ruidy 03cb570b65
Strategy (#22)
* add documentation

* add code example
2020-10-09 12:01:22 +02:00

14 lines
431 B
Markdown

# Behavioral Patterns
Behavioral design patterns are concerned with algorithms and the assignment of responsibilities between objects.
## Patterns
- [Chain of Responsibility](chain_responsibility/README.md)
- [Command](command/README.md)
- [Iterator](iterator/README.md)
- [Mediator](mediator/README.md)
- [Memento](memento/README.md)
- [Observer](observer/README.md)
- [State](state/README.md)
- [Strategy](strategy/README.md)