Just using a one dimensional array, you should save space, and there might be some slight change in access time, though whether it is faster or not, it probably depends on the compiler and the language.
I wrote this solution quickly in Qt, but it should be simple to convert it to stl c++ or some other language:
#include <QVector>
#include <QDebug>
#include <QString>
class MirroredArray
{
public:
MirroredArray(int sideLength)
{
values.fill(0, sideLength*(sideLength+1)/2);
this->s = sideLength;
}
int get(int r, int c)
{
if(c > r)
{
return values.at(s*r-(r-1)*r/2 + c-r);
}
else
{
return values.at(s*c-(c-1)*c/2 + r-c);
}
}
void set(int r, int c, int value)
{
if(c > r)
{
values[s*r-(r-1)*r/2 + c-r] = value;
}
else
{
values[s*c-(c-1)*c/2 + r-c] = value;
}
}
int getSide()
{
return s;
}
QString contentsToString()
{
QString temp = "(" + QString::number(values.size()) + ") - ";
for(int i = 0; i<values.size(); i++)
temp += QString::number(i) + ", ";
return temp;
}
private:
QVector <int> values;
int s;
};
Note: This code doesn't do any error checking that you are passing in a valid row and column value.