mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
81 lines
1.2 KiB
C++
81 lines
1.2 KiB
C++
/*
|
|
* PointerVector.h
|
|
*
|
|
*/
|
|
|
|
#ifndef TOOLS_POINTERVECTOR_H_
|
|
#define TOOLS_POINTERVECTOR_H_
|
|
|
|
#include "CheckVector.h"
|
|
|
|
template<class T>
|
|
class PointerVector : public CheckVector<T>
|
|
{
|
|
int i;
|
|
|
|
public:
|
|
PointerVector() : i(0) {}
|
|
PointerVector(size_t size) : CheckVector<T>(size), i(0) {}
|
|
PointerVector(const vector<T>& other) : CheckVector<T>(other), i(0) {}
|
|
void clear()
|
|
{
|
|
vector<T>::clear();
|
|
reset();
|
|
}
|
|
void reset()
|
|
{
|
|
i = 0;
|
|
}
|
|
T& next()
|
|
{
|
|
return (*this)[i++];
|
|
}
|
|
T* skip(size_t n)
|
|
{
|
|
i += n;
|
|
return &*(this->begin() + i);
|
|
}
|
|
size_t left()
|
|
{
|
|
return this->size() - i;
|
|
}
|
|
};
|
|
|
|
template<class T>
|
|
class IteratorVector : public CheckVector<T>
|
|
{
|
|
typename vector<T>::iterator it;
|
|
|
|
public:
|
|
void clear()
|
|
{
|
|
CheckVector<T>::clear();
|
|
reset();
|
|
}
|
|
|
|
void reset()
|
|
{
|
|
it = this->begin();
|
|
}
|
|
|
|
T& next()
|
|
{
|
|
#ifdef CHECK_BUFFER_SIZE
|
|
require(1);
|
|
#endif
|
|
return *it++;
|
|
}
|
|
|
|
size_t left()
|
|
{
|
|
return this->end() - it;
|
|
}
|
|
|
|
void require(size_t n)
|
|
{
|
|
assert(it >= this->begin() and it + n <= this->end());
|
|
}
|
|
};
|
|
|
|
#endif /* TOOLS_POINTERVECTOR_H_ */
|