b) Describe a procedure visitors should follow to find a free parking space when the space they are assigned is occupied. c) A large parking-systems company would like to automate your assignment procedure for self- parking cars. You have been hired to implement a "simple" proof-of-concept program in C++, for now, customers will enter their 3 digit plate numbers and your software will assign parking space. Your implementation should find a free parking space if the original assigned space is occupied. If no spaces are free, your algorithm should say so. You need to encapsulate(embed) your algorithm in a function. You may create as many functions as you need to get the job done. Below is a starting point. const int N =31; // N parking spaces bool parking[N]; // the garage void EmptyThelot(bool parking[], int N) { for(int i-0; i
c++ coding language
I need help with part B and C please. If you are unable to do both, then
PLEASE prioritize part C. I am really stuck and really can use the help.
This is the code for c that was provided in order to guide me:
const int N =31; // N parking spaces
bool parking[N]; // the garage
void EmptyTheLot(bool parking[], int N) {
for(int i=0; i<N; i++) p[i]=false; // empty space
}
// returns -1 if no space found,
//otherwise it returns 0<=i<N for a valid space.
int FindSpace(int PlateNumber, bool parking[], int N)
{
// ?????
}
main() {
EmptyTheLot(parking, N); // start with an empty parking garage. // get plate numbers and fill lot.
}
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images