Skip to content

Commit

Permalink
Merge pull request #10 from coopsdev/update-docs
Browse files Browse the repository at this point in the history
Update docs & fix resize logic error
  • Loading branch information
cooperlarson committed Aug 4, 2024
2 parents 7559a86 + 8d2a738 commit bc2b8cc
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 13 deletions.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class Pkg(ConanFile):
name = "bpd"
version = "0.2.5"
version = "0.2.6"
license = "MIT"
author = "Cooper Larson | cooper.larson1@gmail.com"
url = ""
Expand Down
46 changes: 35 additions & 11 deletions include/BoundedPriorityDeque.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class BoundingPair {
* @class BoundingPair
* @brief Specialization of BoundingPair for types with a custom comparison operator.
*
* Inherits from std::pair and uses a custom comparator for ordering.
* Uses a custom comparator for ordering.
*
* @tparam K The key type.
* @tparam V The value type.
Expand All @@ -85,7 +85,8 @@ class BoundingPair<K, V, std::enable_if_t<has_comparison_operator_v<K>>> : publi
* @class BoundedPriorityDequeBase
* @brief Base class for implementing a bounded priority deque.
*
* This class provides the basic functionalities of a bounded deque with methods for pushing, popping, and accessing elements while maintaining a defined capacity.
* This class provides the basic functionalities of a bounded deque with methods for
* pushing, popping, and accessing elements while maintaining a defined capacity.
*
* @tparam K Type of the key.
* @tparam V Type of the value.
Expand All @@ -105,13 +106,27 @@ class BoundedPriorityDequeBase {
*/
virtual bool compare(K a, K b) const = 0;

/**
* @brief Provides fast access to the next index of a given insertion position.
*
* @param current The index queried for next index
* @return The next index with circular wrap-around
*/
[[nodiscard]] size_t nextIndex(size_t current) const { return (current + 1) % _k; }

/**
* @brief Provides fast access to the previous index of a given insertion position.
*
* @param current The index queried for previous index
* @return The previous index with circular wrap-around
*/
[[nodiscard]] size_t prevIndex(size_t current) const { return (current + _k - 1) % _k; }

/**
* @brief Efficiently locates the optimal insertion index.
*
* Performs binary search & locates insertion index in O(log n) time, adapted for a circular buffer with modulo arithmetic.
* Performs binary insertion search and locates insertion index in O(log n) time,
* adapted for a circular buffer with modulo arithmetic. No handling of duplicate values.
*
* @param target The element to be inserted.
* @return The optimal insertion index for the targeted insertion element.
Expand All @@ -132,9 +147,9 @@ class BoundedPriorityDequeBase {
*
* This is a utility method to allow shared insertion logic between the public push method
* and the operator+=() code, the latter of which needed a way to terminate the loop without
* running redundant capacity checks, so this function is essentially protection free (think overwriting
* the circular buffer) insertion, popping from the bottom if capacity is to be exceeded must be handled
* by the programmer in this case.
* running redundant capacity checks, so this function is essentially protection free insertion (think
* overwriting elements in the circular buffer), popping from the bottom if capacity is to be exceeded
* must be handled by the programmer in this case.
*
* @param element
*/
Expand All @@ -149,7 +164,7 @@ class BoundedPriorityDequeBase {

auto index = binarySearch(element);
if (index != nextIndex(_tail)) {
if (_head > 0) std::move(_buffer.begin() + _head, _buffer.begin() + index + 1, _buffer.begin() + _head + - 1);
if (_head > 0) std::move(_buffer.begin() + _head, _buffer.begin() + index + 1, _buffer.begin() + _head - 1);
else std::move_backward(_buffer.begin() + index, _buffer.begin() + _tail + 1, _buffer.begin() + _tail + 2);
}

Expand All @@ -168,7 +183,7 @@ class BoundedPriorityDequeBase {

public:
/**
* Constructor with default capacity == 0.
* @brief Primary constructor with default bounding capacity of zero.
*
* @param capacity The initially set bounding capacity of the data structure.
*/
Expand Down Expand Up @@ -200,6 +215,14 @@ class BoundedPriorityDequeBase {
return _buffer[_tail];
}

/**
* @brief Get the key from the highest-priority element.
*
* Introduced to help with merging checks in operator+=, but useful for checking the top of the dequeues
* key if an optimization threshold is trying to be achieved.
*
* @return the lowest-priority elements key.
*/
[[nodiscard]] K topK() const {
#ifdef ENABLE_DEBUG
if (empty()) throw std::runtime_error("Attempted to access bottom element of empty BoundedPriorityDeque");
Expand Down Expand Up @@ -232,8 +255,7 @@ class BoundedPriorityDequeBase {
/**
* @brief Inserts an element into the vector.
*
* Pops bottom element to make room if necessary.
*
* If dequeue is at capacity and the insertion is valid, pops the bottom element.
* If straightforward insertion not possible, uses binary search to find the insertion index,
* then shifts the elements above or below the insertion index to make room for the item.
*
Expand Down Expand Up @@ -350,7 +372,7 @@ class BoundedPriorityDequeBase {
*
* Updates the capacity, then restores the _head of the _buffer back to index 0
* leaving the buffer in a contiguous fresh state. This preserves the integrity
* of the data when shrinking the buffer.
* of the higher-priority data when shrinking the buffer.
*
* @param k The new capacity.
*/
Expand All @@ -365,6 +387,8 @@ class BoundedPriorityDequeBase {
std::move(_buffer.begin() + _head, _buffer.end() + 1, newBuffer.begin());
std::move(_buffer.begin(), _buffer.begin() + _tail + 1, newBuffer.begin() + (_k - _head - 1));
_buffer = newBuffer;
_head = 0;
_tail = _size - 1;
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('bpd', 'cpp',
version : '0.2.5',
version : '0.2.6',
default_options : ['warning_level=3', 'cpp_std=c++23', 'optimization=3', 'buildtype=release'])

source_root = meson.source_root()
Expand Down

0 comments on commit bc2b8cc

Please sign in to comment.