Reputation: 10040
When I read some values from the user and I need to create an array of the specific size I do it somehow like this:
#include <iostream>
using namespace std;
unsigned* numbers;
int main()
{
int a;
cin >> a;
numbers = new unsigned[a];
}
How can I do it with a 2d array(sized a*b read from the user)?
Upvotes: 1
Views: 5157
Reputation: 24576
Anything that would look like a 2D-Array in code will not be a physical 2D array in memory, but either one plain block of memory or scattered, depending on how you allocate it.
Brennan Vincent's answer suggests allocation of one dynamic array, containing a*b elements, which gives you one continuous block in memory. Combine that with the builtin dynamic memory management of std::vector
he mentioned and be happy:
std::vector<unsigned> matrix(a*b);
If you want the matrix to be convenient to access, wrap the whole thing into a class providing you access to the elements with 2D-coordinates. But please step away from managing the memory yourself. It just hurts you and anyone who has to maintain that code (and search for mem leaks).
Upvotes: 6
Reputation: 39370
It's worth noting that boost already did that. So I'll just stick to it, if it isn't meant to be encapsulated in a class.
In general, using raw arrays and allocations is inferior to using std::vector
. Now, you can of course use vector<vector<T>>
, but that's not only lenghty to type, but can also involve unnecessary copying.
Using ptr_vector
or vector<unique_ptr<vector<int>>
would solve the second problem, but complicate the matters even worse. So how to solve it?
It's simple: Don't use 2D arrays at all.
Imagine your 2D array in memory:
[X|X|X|X]
[Y|Y|Y|Y]
[Z|Z|Z|Z]
It's obvious enough that it could be put in one row:
[X|X|X|X|Y|Y|Y|Y|Z|Z|Z|Z]
Now we're back to old, familiar 1D array (doesn't matter if it's a vector
or C-style array). In order to get to your element, you have to know the width of your initial array, and go to the array element corresponding to n'th row, then plainly add the number of columns:
int& access (unsigned x, unsigned y) {
return data[x * sizeY + y]; // Or (y * sizeX + x)
}
Since it's a stub method, you might have a problem in actual usage. Here's an example of a global implementation:
int& accessVectorAs2d (std::vector<int> & data, unsigned x, unsigned y, unsigned int sizeY); // inside stays the same
unsigned SizeX = 20, SizeY = 20;
std::vector<int> V (SizeX * SizeY, 0);
accessVectorAs2d(V, 1, 3, SizeX) = 5;
Reference is returned to allow using your 1D structure in a very similar way to normal 2D array:
// So you can do either reads
int X = access(1, 3);
// Or writes!
access(1,3) = 5;
Additional note: if you'll construct your own class, overloading operator()
can give you even better results:
Data(1, 3) = 5;
int X = Data(1, 3);
Now how you're gonna implement that access (subclassing or encapsulating vector, or just using plain global function) doesn't really matter.
I'd strongly suggest you used std::vector
here. It will ensure no memory will leak (forgotten delete), it will be easier to change the size (either by .push_back()
or .reserve()
) and is in general suggested practice; you're writing in C++, not in C, after all.
Actually the class should of course be templated, with not only the type, but also number of dimensions (okay, that can be simplified) and size of (every-1) dimension (-1 to allow unlimited growth in one side). This would be probably done best by creating appropriate access functions at compile time, calculating
Sumi = 0i < n (Sizei)i * Di,
where n is number of dimensions, S is an array of dimension sizes, and D is an array of coordinates.
Upvotes: 3
Reputation: 20730
Although the "vector of vectors" solution can be satisfying, they are not a 2D structure: each "row" will be allocated independently of another, and length can be different row by raw (and hence the 2D constrain must be maintained manually: inserting an item requires all rows to be enlarged so that elemets that are one above the other maintain their relative position.
In case you need a proper dynamic 2D structure, you can wrap a vector (simple mono-dimensional) in a class (let's call it "table
") and provide that class with the operation requird to properly maintain it as an externally represented 2D. In particular:
Colums() const
and Rows() const
functions retuning theactual size of the table.int& operator()(unsigned row, unsigned col) { return vect[row*Colums()+col]; }
and it s const counterpartstruct coord { unsigned r, unsigned c }
and a convenient table::operator[](const coord&)
insert
and remove
methods to insert a row (just insert Colums()
consecutive elements at r*Columns()
) and a column (insert one element every Columns()+1
starting from c
)end()
value for them)The key point of all this stuff is the understanding of the n = r*C+c
formula at the second point. Everything else is just an almost immediate consequence.
Upvotes: 1
Reputation: 45410
Could just use one vector to represent two dimension arrays:
typedef std::vector<int> d1_type; // 1D
typedef std::vector<d1_type> d2_type; // 2D
typedef std::vector<d2_type> d3_type; // 3D
int num = 5;
d2_type value2d(num, d1_type(num));
d3_type value3d(num, d2_type(num, d1_type(num)));
And you can access 2D/3D vector like array, for example:
value2d[0][0] = 100;
value3d[0][0][0] = 100;
Upvotes: 3
Reputation: 115
You can allocate the memory by using c++ new[] the following way :
int** array = new int*[x];
for(int i = 0; i < x; i++)
aryay[i] = new int[y];
The simple concept of this is that its and array of pointers which are pointing to arrays. It must be deleted too to avoid the memory leaks.
Upvotes: 2
Reputation:
Try to use vectors.
#include <iostream>
#include <vector>
using namespace std;
int main()
{
// An empty vector of vectors. The space
// between the 2 '>' signs is necessary
vector<vector<int> > v2d;
// If you intend creating many vectors
// of vectors, the following's tidier
typedef vector<vector<int> > IntMatrix;
IntMatrix m;
// Now we'll try to create a 3 by 5 "matrix".
// First, create a vector with 5 elements
vector<int> v2(5, 99);
// Now create a vector of 3 elements.
// Each element is a copy of v2
vector<vector<int> > v2d2(3,v2);
// Print out the elements
for(int i=0;i<v2d2.size(); i++) {
for (int j=0;j<v2d2[i].size(); j++)
cout << v2d2[i][j] << " ";
cout << endl;
}
}
Upvotes: 2
Reputation: 358
unsigned **numbers;
numbers = new unsigned*[a];
for (int i=0; i<a; i++){
numbers[i] = new unsigned[b];
}
It doesn't behave exactly like a 2d array, in that it's not contiguous in memory, but it will do. You can also use the notation numbers[i][j]
to access elements.
Remember to delete[]
each element of numbers
at the end before delete[]
-ing numbers
itself
Using std::vector
is probably a preferable solution, as detailed in other posts
Upvotes: 0
Reputation: 10665
If a and b are the number of rows and number of columns, respectively, you may allocate the array like this:
new unsigned[a * b];
To access the element at row i
and column j
, do this:
numbers[i * b + j]
However, note that in reality you're almost certainly better off using std::vector
for whatever you're trying to do, but you may not have learned about that yet :)
Upvotes: 7