Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save misspokeycat/3068973539a51c8a774992fa2a438faa to your computer and use it in GitHub Desktop.
Save misspokeycat/3068973539a51c8a774992fa2a438faa to your computer and use it in GitHub Desktop.
removeproduct.cpp
bool ProductInventory::removeProduct(string name, string locator){
//Get index of our product (linear search)
int i = 0;
do {
if (products[i].getName() == name && products[i].getLocator() == locator){
//we got it, now replace it
products[i] = products[productCount];
//and delete it
productCount--; //product count is what I am using in my file to track number of elements in array
//and say that we did it
return true;
}
i++;
} while (i < productCount);
//we couldn't find it -_-
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment