I need to declare an array of arrays and so using the code below to accomplish that:
int ** maxc = new int *[proc_num];//memory allocated for elements of rows
for (int i = 0; i < proc_num; i++)
{
maxc[i] = new int[n];//memory allocated for elements of each column.
}
The problem is, the code above does not seem to compile. I get the following compilation error:
A value of type "int *" cannot be assigned to an entity of type "int"
Here's the full code:
//#include<math.h>
#include "stdafx.h"
#include <string>
#include <iostream>
#include <vector>
using namespace std;
/*
Banker's algorithm Implementation
*/
int main(void)
{
int n=0;//number of resources we will be dealing with
int proc_num =0;//Total number of processes to share available resources
int* a = NULL; // pointer to an int with initial set to point to nothing
// int* maxc = NULL;
int* maxR=NULL;
int* avail = NULL;
int* avail_temp = NULL;
//int** alloc = NULL;
int* unalloc = NULL;
std::cout<<endl;
std::cout <<" What is number of resources to be shared? :";
cin >> n;
std::cout<<endl;
while(std::cin.fail())
{
std::cout<< " Error Please provide valid number !" <<endl;
std::cin.clear() ;
std::cout<<endl;
std::cout <<" What is number of resources to be shared? :";
cin >> n;
std::cout<<endl;
}
maxR = new int[n]; // Allocate n ints and save ptr in maxc -- holds the max resources available.
//get the maximum number of each Resources/ Ie Total Resources Available
for(int i =0; i < n; i++)
{
int maxcin=0;
std::cout << i;
std::cout<< ". How many of resource #";
std::cout<< i;
std::cout<< " do you need to share ?";
cin>>maxcin;
maxR[i] = maxcin;
}
//<8,7,5,9>");
std::cout<<endl;
std::cout << "How many processes to share available resources?";
cin>>proc_num;
std::cout<<endl;
int ** maxc = new int *[proc_num];//memory allocated for elements of rows
for (int i = 0; i < proc_num; i++)
{
maxc[i] = new int*[n];//memory allocated for elements of each column.
}
}
new, or::, or<<(except as bitwise shift operator), ornamespace, .. – pmg May 11 '11 at 22:40