/* Rafay Ahmad 23I-2526 */ #include using namespace std; class CustomerList{ int* customerIds; int size; int capacity; void increaseCapacity(){ int* newArr = new int[size*2]; for(int j=0;j= capacity) increaseCapacity(); customerIds[size] = customerId; size++; } int findCustomer(int customerId){ for(int i=0;i