Created
April 1, 2016 17:11
-
-
Save misspokeycat/3068973539a51c8a774992fa2a438faa to your computer and use it in GitHub Desktop.
removeproduct.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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