Alyaa Talaatalyaatalaat28.hashnode.dev·Oct 18, 2024Iterator and Composite Patterns – Head First ApproachIn this article, we will explore two powerful behavioral design patterns: Iterator and Composite. These patterns provide efficient ways to traverse collections and manage complex hierarchical structures. By using them, we can simplify client code whi...Discussiterator design pattern
Mishra Rupeshcodingpathsala.hashnode.dev·Jun 16, 2024Understanding the Composite Design Pattern: Simplifying Hierarchical StructuresThe Composite Design Pattern is an essential tool in system design, enabling you to manage and simplify complex hierarchical structures. By treating individual objects and composite objects uniformly, this pattern enhances the flexibility and maintai...Discussdesign patterns
ALBERT KENYI APAZA CCALLEalbertapaza.hashnode.dev·Apr 23, 2024Behavioral patterns : Chain of ResponsibilityAbstract The Chain of Responsibility design pattern, also known as Chain of Command, is a powerful tool in the arsenal of software designers. This behavioral pattern allows requests to be passed along a chain of handlers, each of which decides whethe...DiscussUPT
Preetham Yeddulawiser.hashnode.dev·Feb 6, 2024A Glimpse on Strategy PatternDefinition : This is used when there are a group of algorithms that can be used interchangeably without the caller bothering about the implementation. Example Let's take scenario where the task is implement a Car in game. Requirement : can be of typ...Discusscomposite-desing-pattern
Syed Jafer Kparottasalna.hashnode.dev·Jan 19, 2024Composite Design PatternWhat it is ? Composite is a structural design pattern that lets you compose objects into tree structures and then work with these structures as if they were individual objects. As described by Gof, “Compose objects into tree structure to represent pa...DiscussLLDcomposite-desing-pattern