Tagged Questions

3
votes
3answers
1k views

Overloading operator [] for a sparse vector

I'm trying to create a "sparse" vector class in C++, like so: template<typename V, V Default> class SparseVector { ... } Internally, it will be represented by an std::map<int, V> ...