Skip to content
-
Strategy Method Design Pattern | C++ Design Patterns
Last Updated :
05 Jan, 2024
Strategy Pattern is a behavioral design pattern that defines a family of interchangeable algorithms and allows them to be used interchangeably within a context. This pattern enables the algorithm to be selected at runtime, providing flexibility and promoting code reusability.

Important Topics for the Strategy Method in C++ Design Patterns
Example of the Strategy Pattern in C++
Problem Statement:
Suppose you are working on a data processing application, and you need to implement a sorting feature that allows users to sort data in various ways. You decide to use the Strategy Pattern to handle different sorting algorithms.
Implementation of the Strategy Pattern in C++
Key Component of Strategy Patterns :
- Context: The class that contains a reference to the strategy interface and is responsible for executing the algorithm.
- Strategy Interface: An interface or abstract class that declares the method(s) for the algorithm. Different strategies implement this interface.
- Concrete Strategies: The different algorithms that implement the strategy interface.
Step 1: Define the Strategy Interface
C++
class SortingStrategy {
public:
virtual void sort(std::vector<int>& arr) = 0;
};
Step 2: Implement Concrete Strategies
C++
class BubbleSort : public SortingStrategy {
public:
void sort(std::vector<int>& arr) override {
// Implement Bubble Sort algorithm
}
};
class QuickSort : public SortingStrategy {
public:
void sort(std::vector<int>& arr) override {
// Implement Quick Sort algorithm
}
};
// Add more sorting algorithms as needed
Step 3: Create the Context
C++
class SortContext {
private:
SortingStrategy* strategy;
public:
void setStrategy(SortingStrategy* strategy) {
this->strategy = strategy;
}
void executeStrategy(std::vector<int>& arr) {
strategy->sort(arr);
}
};
Step 4: Utilize the Strategy Pattern
C++
int main() {
std::vector<int> data = {5, 2, 7, 1, 9};
SortContext context;
BubbleSort bubbleSort;
QuickSort quickSort;
context.setStrategy(&bubbleSort);
context.executeStrategy(data); // Executes Bubble Sort
context.setStrategy(&quickSort);
context.executeStrategy(data); // Executes Quick Sort
return 0;
}
Overall Code for the above Example:
C++
#include <bits/stdc++.h>
class SortingStrategy {
public:
virtual void sort(std::vector<int>& arr) = 0;
};
class BubbleSort : public SortingStrategy {
public:
void sort(std::vector<int>& arr) override
{
// Implement Bubble Sort algorithm
}
};
class QuickSort : public SortingStrategy {
public:
void sort(std::vector<int>& arr) override
{
// Implement Quick Sort algorithm
}
};
// Add more sorting algorithms as needed
class SortContext {
private:
SortingStrategy* strategy;
public:
void setStrategy(SortingStrategy* strategy)
{
this->strategy = strategy;
}
void executeStrategy(std::vector<int>& arr)
{
strategy->sort(arr);
}
};
int main()
{
std::vector<int> data = { 5, 2, 7, 1, 9 };
SortContext context;
BubbleSort bubbleSort;
QuickSort quickSort;
context.setStrategy(&bubbleSort);
context.executeStrategy(data); // Executes Bubble Sort
context.setStrategy(&quickSort);
context.executeStrategy(data); // Executes Quick Sort
return 0;
}
Diagrammatic Representation of Strategy Patterns in C++

- Strategy Pattern allows the client code (in this case, the Context class) to choose between different sorting algorithms (represented by BubbleSort and QuickSort) at runtime, without modifying the client's code.
- This promotes flexibility because you can switch between different sorting algorithms without altering the client's implementation.
- It also promotes code reusability because you can add new sorting algorithms (concrete strategies) by implementing the SortingStrategy interface without modifying the existing code.
The use of an abstract class or interface (SortingStrategy) ensures that all concrete strategies have a consistent interface (sort(arr) method) that can be used interchangeably by the Context class.
Advantages of the Strategy Pattern in C++ Design Patterns
- Flexibility: Easily switch between different algorithms at runtime.
- Code Reusability: Strategies can be reused across different contexts.
- Promotes Single Responsibility: Each strategy focuses on a specific algorithm.
Disadvantages of the Strategy Pattern in C++ Design Patterns
- May lead to an increased number of classes, which can be overwhelming for small-scale applications.
- Context and the Strategy classes normally communicate through the interface specified by the abstract Strategy base class. Strategy base class must expose interface for all the required behaviours, which some concrete Strategy classes might not implement.
- In most cases, the application configures the Context with the required Strategy object. Therefore, the application needs to create and maintain two objects in place of one.
Similar Reads
Modern C++ Design Patterns Tutorial Design patterns in C++ help developers create maintainable, flexible, and understandable code. They encapsulate the expertise and experience of seasoned software architects and developers, making it easier for newer programmers to follow established best practices. What are C++ Design Patterns?A des
7 min read
Creational Software Design Patterns in C++
Factory Method Pattern | C++ Design Patterns Factory Method Pattern provides an interface for creating objects but leaves the actual object instantiation to derived classes. This allows for flexibility in object creation and promotes loose coupling between the client code and the concrete products.Factory Method Pattern | C++ Design PatternsTa
8 min read
Abstract Factory Pattern | C++ Design Patterns Abstract Factory Pattern is a creational design pattern used in object-oriented programming. It provides an interface for creating families of related or dependent objects without specifying their concrete classes. This pattern is a way to encapsulate the creation of objects and ensure that they are
6 min read
Builder Pattern | C++ Design Patterns The builder pattern is defined as a creational design pattern that separates the construction of a complex object from its representation, allowing us to create different representations of an object using the same construction process. It's beneficial when an object has many optional properties or
6 min read
Prototype Pattern | C++ Design Patterns When designing software, it's crucial to make it efficient, easy to reuse, and simple to maintain. One way to achieve these goals is by using design patterns, and one such pattern is the Prototype Pattern. In this article, we'll explore the Prototype Design Pattern in the context of C++. Important T
5 min read
Singleton Pattern | C++ Design Patterns A singleton pattern is a design pattern that ensures that only one instance of a class can exist in the entire program. This means that if you try to create another instance of the class, it will return the same instance that was created earlier. The Singleton pattern is useful when we need to have
11 min read
Structural Software Design Patterns in C++
Adapter Pattern | C++ Design Patterns Adapter Pattern is a structural design pattern used to make two incompatible interfaces work together. It acts as a bridge between two incompatible interfaces, allowing them to collaborate without modifying their source code. This pattern is particularly useful when integrating legacy code or third-
6 min read
Bridge Method | C++ Design Patterns Bridge Pattern is basically a structural design pattern in software engineering or in C++ programming that is used to separate an object's abstraction from its implementation. It is part of the Gang of Four (GoF) design patterns and is particularly useful when we need to avoid a permanent binding be
9 min read
`;
$(commentSectionTemplate).insertBefore(".article--recommended");
}
loadComments();
});
});
function loadComments() {
if ($("iframe[id*='discuss-iframe']").length top_of_element && top_of_screen articleRecommendedTop && top_of_screen articleRecommendedBottom)) {
if (!isfollowingApiCall) {
isfollowingApiCall = true;
setTimeout(function(){
if (loginData && loginData.isLoggedIn) {
if (loginData.userName !== $('#followAuthor').val()) {
is_following();
} else {
$('.profileCard-profile-picture').css('background-color', '#E7E7E7');
}
} else {
$('.follow-btn').removeClass('hideIt');
}
}, 3000);
}
}
});
}
$(".accordion-header").click(function() {
var arrowIcon = $(this).find('.bottom-arrow-icon');
arrowIcon.toggleClass('rotate180');
});
});
window.isReportArticle = false;
function report_article(){
if (!loginData || !loginData.isLoggedIn) {
const loginModalButton = $('.login-modal-btn')
if (loginModalButton.length) {
loginModalButton.click();
}
return;
}
if(!window.isReportArticle){
//to add loader
$('.report-loader').addClass('spinner');
jQuery('#report_modal_content').load(gfgSiteUrl+'wp-content/themes/iconic-one/report-modal.php', {
PRACTICE_API_URL: practiceAPIURL,
PRACTICE_URL:practiceURL
},function(responseTxt, statusTxt, xhr){
if(statusTxt == "error"){
alert("Error: " + xhr.status + ": " + xhr.statusText);
}
});
}else{
window.scrollTo({ top: 0, behavior: 'smooth' });
$("#report_modal_content").show();
}
}
function closeShareModal() {
const shareOption = document.querySelector('[data-gfg-action="share-article"]');
shareOption.classList.remove("hover_share_menu");
let shareModal = document.querySelector(".hover__share-modal-container");
shareModal && shareModal.remove();
}
function openShareModal() {
closeShareModal(); // Remove existing modal if any
let shareModal = document.querySelector(".three_dot_dropdown_share");
shareModal.appendChild(Object.assign(document.createElement("div"), { className: "hover__share-modal-container" }));
document.querySelector(".hover__share-modal-container").append(
Object.assign(document.createElement('div'), { className: "share__modal" }),
);
document.querySelector(".share__modal").append(Object.assign(document.createElement('h1'), { className: "share__modal-heading" }, { textContent: "Share to" }));
const socialOptions = ["LinkedIn", "WhatsApp","Twitter", "Copy Link"];
socialOptions.forEach((socialOption) => {
const socialContainer = Object.assign(document.createElement('div'), { className: "social__container" });
const icon = Object.assign(document.createElement("div"), { className: `share__icon share__${socialOption.split(" ").join("")}-icon` });
const socialText = Object.assign(document.createElement("span"), { className: "share__option-text" }, { textContent: `${socialOption}` });
const shareLink = (socialOption === "Copy Link") ?
Object.assign(document.createElement('div'), { role: "button", className: "link-container CopyLink" }) :
Object.assign(document.createElement('a'), { className: "link-container" });
if (socialOption === "LinkedIn") {
shareLink.setAttribute('href', `https://www.linkedin.com/sharing/share-offsite/?url=${window.location.href}`);
shareLink.setAttribute('target', '_blank');
}
if (socialOption === "WhatsApp") {
shareLink.setAttribute('href', `https://api.whatsapp.com/send?text=${window.location.href}`);
shareLink.setAttribute('target', "_blank");
}
if (socialOption === "Twitter") {
shareLink.setAttribute('href', `https://twitter.com/intent/tweet?url=${window.location.href}`);
shareLink.setAttribute('target', "_blank");
}
shareLink.append(icon, socialText);
socialContainer.append(shareLink);
document.querySelector(".share__modal").appendChild(socialContainer);
//adding copy url functionality
if(socialOption === "Copy Link") {
shareLink.addEventListener("click", function() {
var tempInput = document.createElement("input");
tempInput.value = window.location.href;
document.body.appendChild(tempInput);
tempInput.select();
tempInput.setSelectionRange(0, 99999); // For mobile devices
document.execCommand('copy');
document.body.removeChild(tempInput);
this.querySelector(".share__option-text").textContent = "Copied"
})
}
});
// document.querySelector(".hover__share-modal-container").addEventListener("mouseover", () => document.querySelector('[data-gfg-action="share-article"]').classList.add("hover_share_menu"));
}
function toggleLikeElementVisibility(selector, show) {
document.querySelector(`.${selector}`).style.display = show ? "block" : "none";
}
function closeKebabMenu(){
document.getElementById("myDropdown").classList.toggle("show");
}