在内存中

时间:2017-08-25 15:01:48

标签: c++ arrays memory multidimensional-array contiguous

我希望能够在c ++中在堆上定义一般的多维数组,并且我希望为数组分配一个连续的内存以便快速访问元素(而不是矢量的锯齿状矢量)。这是我的实现

#include <iostream>
#include <vector>
#include <stdexcept>

using namespace std;

typedef vector<unsigned int> VUI;

class Invalid_MDArray : public exception{
public:
    char* what(){
        return "Array cannot be constructed ";
    }
};

template <class T>
class MArray{
private:
    VUI dsize;
    VUI cumsize;
    T* p;
    unsigned int stot;

public:

    unsigned int size(){ return stot; }
    unsigned int size(unsigned int i) { return dsize[i]; }


    MArray(const VUI& a){


        stot = 1;
        for (unsigned int i = 0; i<a.size(); i++){

            if (a[i] == 0) {
                Invalid_MDArray o;
               throw o;
           }

           stot = stot*a[i];

           dsize.push_back(a[i]);
           cumsize.push_back(stot);
        }

        dsize.push_back(stot);

        p = new T[stot];


    }


    ~MArray(){

        delete[] p;
    }


    inline T& operator()(VUI&& a){

       if (a.size() != dsize.size() - 1) {

            out_of_range o("Index is out of bound!");
            throw o;

       }

       unsigned int i = 0;
       while (i<a.size()){
            if (a[i]>dsize[i] - 1) {

                out_of_range o("Index is out of bound!");
               throw o;
           }
           i++;
        }

        unsigned int index = 0;

        //      index=i+imax*j+imax*jmax*k

       i = 0;
       while (i<a.size()){

            if (i == 0) {
                index = a[i];
            }
            else {
                index = index + a[i] * cumsize[i - 1];

            }


           i++;
        }


       return p[index];
    }

};


int main(){


    try{
        MArray<int>  t({ 2, 2, 2 });
        t({ 1, 1, 1 }) = 10;
        cout << t({ 1, 1, 1 }) << endl;

        // I prefer accessing the elements like this -> cout<<t(1,1,1)<<endl;

        MArray<int>  tt({ 2, 0, 2 }); // OOPS! cannot construct this array!
        cout << t.size()<<endl;
        t({ 1, 2, 1 }) = 1000; //OOPS! outofbound exception!
    }
    catch (exception &e){
        cout << e.what() << endl;
    }

    getchar();
}

但是,我不喜欢访问数组的界面,例如

cout << t({ 1, 1, 1 }) << endl;
看起来很难看。

是否有可能以不同的方式实现这一点,以更自然的方式更好地访问元素,例如cout<<t(1,1,1);,而不是?

1 个答案:

答案 0 :(得分:0)

我不会重新发明轮子。 Google快速搜索显示Boost.MultiArray,这是一个多维数组库,似乎符合您的所有设计要求。

我还会问这是不是过早优化。你真的需要更快的速度吗?矢量非常快。