added SearchableArray
This commit is contained in:
parent
d8247f8a6f
commit
adaa559974
@ -661,24 +661,6 @@ public:
|
||||
this->remove(this->getSize() - 1);
|
||||
}
|
||||
|
||||
#if 0
|
||||
/// \return the number of items deleted.
|
||||
int removeByValue (const T& value)
|
||||
{
|
||||
qse_size_t index = this->findFirstIndex (value);
|
||||
if (index == INVALID_INDEX) return 0;
|
||||
this->remove (index);
|
||||
return 1;
|
||||
}
|
||||
|
||||
qse_size_t removeAllByValue (const T& value)
|
||||
{
|
||||
qse_size_t cnt = 0;
|
||||
while (this->removeByValue(value) > 0) cnt++;
|
||||
return cnt;
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
void clear (bool purge_buffer = false)
|
||||
{
|
||||
@ -765,44 +747,6 @@ public:
|
||||
this->setCapacity (this->size);
|
||||
}
|
||||
|
||||
#if 0
|
||||
qse_size_t findFirstIndex (const T& value) const
|
||||
{
|
||||
for (qse_size_t i = 0; i < this->count; i++)
|
||||
{
|
||||
if (this->is_equal (this->buffer[i], value)) return i;
|
||||
}
|
||||
return INVALID_INDEX;
|
||||
}
|
||||
|
||||
qse_size_t findFirstIndex (const T& value, qse_size_t index) const
|
||||
{
|
||||
for (qse_size_t i = index; i < this->count; i++)
|
||||
{
|
||||
if (this->is_equal (this->buffer[i], value)) return i;
|
||||
}
|
||||
return INVALID_INDEX;
|
||||
}
|
||||
|
||||
qse_size_t findLastIndex (const T& value) const
|
||||
{
|
||||
for (qse_size_t i = this->count; i > 0; )
|
||||
{
|
||||
if (this->is_equal (this->buffer[--i], value)) return i;
|
||||
}
|
||||
return INVALID_INDEX;
|
||||
}
|
||||
|
||||
qse_size_t findLastIndex (const T& value, qse_size_t index) const
|
||||
{
|
||||
for (qse_size_t i = index + 1; i > 0; )
|
||||
{
|
||||
if (this->is_equal (this->buffer[--i], value)) return i;
|
||||
}
|
||||
return INVALID_INDEX;
|
||||
}
|
||||
#endif
|
||||
|
||||
enum RotateDirection
|
||||
{
|
||||
ROTATE_LEFT,
|
||||
@ -855,6 +799,97 @@ protected:
|
||||
T* buffer;
|
||||
};
|
||||
|
||||
// euqal-to comparator
|
||||
template <typename T>
|
||||
struct SearchableArrayEqtester
|
||||
{
|
||||
// this can be used to build a max heap
|
||||
bool operator() (const T& v1, const T& v2) const
|
||||
{
|
||||
return v1 == v2;
|
||||
}
|
||||
};
|
||||
|
||||
template <typename T, typename EQTESTER = SearchableArrayEqtester<T>, typename POSITIONER = ArrayPositioner<T>, typename RESIZER = ArrayResizer>
|
||||
class SearchableArray: public Array<T, POSITIONER, RESIZER>
|
||||
{
|
||||
public:
|
||||
typedef SearchableArray<T,EQTESTER,POSITIONER,RESIZER> SelfType;
|
||||
typedef Array<T,POSITIONER,RESIZER> ParentType;
|
||||
|
||||
enum
|
||||
{
|
||||
DEFAULT_CAPACITY = ParentType::DEFAULT_CAPACITY,
|
||||
INVALID_INDEX = ParentType::INVALID_INDEX
|
||||
};
|
||||
|
||||
SearchableArray (Mmgr* mmgr = QSE_NULL): ParentType(mmgr) {}
|
||||
|
||||
SearchableArray (qse_size_t capacity, Mmgr* mmgr = QSE_NULL): ParentType(capacity, mmgr) {}
|
||||
|
||||
SearchableArray (const SelfType& heap): ParentType(heap) {}
|
||||
|
||||
#if defined(QSE_CPP_ENABLE_CPP11_MOVE)
|
||||
SearchableArray (SelfType&& heap): ParentType(QSE_CPP_RVREF(heap)) {}
|
||||
#endif
|
||||
~SearchableArray () { }
|
||||
|
||||
/// \return the number of items deleted.
|
||||
int removeByValue (const T& value)
|
||||
{
|
||||
qse_size_t index = this->findFirstIndex (value);
|
||||
if (index == INVALID_INDEX) return 0;
|
||||
this->remove (index);
|
||||
return 1;
|
||||
}
|
||||
|
||||
qse_size_t removeAllByValue (const T& value)
|
||||
{
|
||||
qse_size_t cnt = 0;
|
||||
while (this->removeByValue(value) > 0) cnt++;
|
||||
return cnt;
|
||||
}
|
||||
|
||||
qse_size_t findFirstIndex (const T& value) const
|
||||
{
|
||||
for (qse_size_t i = 0; i < this->count; i++)
|
||||
{
|
||||
if (this->_eqtester(this->buffer[i], value)) return i;
|
||||
}
|
||||
return INVALID_INDEX;
|
||||
}
|
||||
|
||||
qse_size_t findFirstIndex (const T& value, qse_size_t index) const
|
||||
{
|
||||
for (qse_size_t i = index; i < this->count; i++)
|
||||
{
|
||||
if (this->_eqtester(this->buffer[i], value)) return i;
|
||||
}
|
||||
return INVALID_INDEX;
|
||||
}
|
||||
|
||||
qse_size_t findLastIndex (const T& value) const
|
||||
{
|
||||
for (qse_size_t i = this->count; i > 0; )
|
||||
{
|
||||
if (this->_eqtester(this->buffer[--i], value)) return i;
|
||||
}
|
||||
return INVALID_INDEX;
|
||||
}
|
||||
|
||||
qse_size_t findLastIndex (const T& value, qse_size_t index) const
|
||||
{
|
||||
for (qse_size_t i = index + 1; i > 0; )
|
||||
{
|
||||
if (this->_eqtester(this->buffer[--i], value)) return i;
|
||||
}
|
||||
return INVALID_INDEX;
|
||||
}
|
||||
|
||||
protected:
|
||||
EQTESTER _eqtester;
|
||||
};
|
||||
|
||||
/////////////////////////////////
|
||||
QSE_END_NAMESPACE(QSE)
|
||||
/////////////////////////////////
|
||||
|
@ -170,8 +170,8 @@ public:
|
||||
qse_size_t getIndex (const T& v) const { return ParentType::getIndex(v); }
|
||||
|
||||
/// The setCapacity() function resizes the capacity of the internal buffer.
|
||||
/// If the given capacity is smaller than the current capacity, it skips resizing.
|
||||
void setCapacity (qse_size_t capa) { if (capa > ParentType::getCapacity()) ParentType::setCapacity (capa); }
|
||||
/// If the given capacity is smaller than the current size, it skips resizing.
|
||||
void setCapacity (qse_size_t capa) { if (capa > ParentType::getSize()) ParentType::setCapacity (capa); }
|
||||
|
||||
/// The clear() function returns all items.
|
||||
void clear (bool purge_buffer = false) { ParentType::clear (purge_buffer); }
|
||||
|
@ -47,7 +47,7 @@ QSE_BEGIN_NAMESPACE(QSE)
|
||||
#define MSG_EPIPE "pipe error"
|
||||
|
||||
#define MSG_EINPROG "in progress"
|
||||
#define MSG_EAGAIN "resource unavailable unavailable"
|
||||
#define MSG_EAGAIN "resource temporarily unavailable"
|
||||
#define MSG_EEXCEPT "exception"
|
||||
|
||||
static const qse_mchar_t* _merrstr[] =
|
||||
|
Loading…
Reference in New Issue
Block a user