Files
Seele/src/Engine/Containers/Map.h
T

364 lines
6.2 KiB
C++
Raw Normal View History

#pragma once
#include "Array.h"
namespace Seele
{
2020-04-12 15:47:19 +02:00
template <typename K, typename V>
struct Pair
{
public:
Pair()
: key(K()), value(V())
{
2020-04-12 15:47:19 +02:00
}
Pair(K key, V value)
: key(key), value(value)
{
}
K key;
V value;
};
template <typename K, typename V>
struct Map
{
private:
struct Node
{
Pair<K, V> pair;
Node *leftChild;
Node *rightChild;
Node(const K &key)
: leftChild(nullptr), rightChild(nullptr), pair(key, V())
{
}
Node()
: leftChild(nullptr), rightChild(nullptr), pair(K(), V())
{
}
~Node()
{
if (leftChild != nullptr)
{
delete leftChild;
}
if (rightChild != nullptr)
{
delete rightChild;
}
}
};
2020-04-12 15:47:19 +02:00
public:
Map()
: root(nullptr), _size(0)
{
}
~Map()
{
delete root;
}
class Iterator
{
public:
2020-04-12 15:47:19 +02:00
typedef std::bidirectional_iterator_tag iterator_category;
typedef Pair<K, V> value_type;
typedef std::ptrdiff_t difference_type;
typedef Pair<K, V> &reference;
typedef Pair<K, V> *pointer;
2020-04-12 15:47:19 +02:00
Iterator(Node *x = nullptr)
: node(x)
{
}
Iterator(Node *x, Array<Node *> &&beginIt)
: node(x), traversal(std::move(beginIt))
{
}
Iterator(const Iterator &i)
: node(i.node), traversal(i.traversal)
{
}
reference operator*() const
{
return node->pair;
}
pointer operator->() const
{
return &node->pair;
}
inline bool operator!=(const Iterator &other)
{
return node != other.node;
}
inline bool operator==(const Iterator &other)
{
return node == other.node;
}
Iterator &operator++()
{
node = node->rightChild;
while (node != nullptr && node->leftChild != nullptr)
{
2020-04-12 15:47:19 +02:00
traversal.add(node);
2020-04-01 02:17:49 +02:00
node = node->leftChild;
}
2020-04-12 15:47:19 +02:00
if (node == nullptr && traversal.size() > 0)
2020-04-01 02:17:49 +02:00
{
2020-04-12 15:47:19 +02:00
node = traversal.back();
traversal.pop();
2020-04-01 02:17:49 +02:00
}
2020-04-12 15:47:19 +02:00
return *this;
2020-04-01 02:17:49 +02:00
}
2020-04-12 15:47:19 +02:00
Iterator &operator--()
{
2020-04-12 15:47:19 +02:00
node = node->leftChild;
while (node != nullptr && node->rightchild != nullptr)
{
2020-04-12 15:47:19 +02:00
traversal.add(node);
node = node->rightChild;
}
2020-04-12 15:47:19 +02:00
if (node == nullptr && traversal.size() > 0)
{
node = traversal.back();
traversal.pop();
}
return *this;
}
2020-04-12 15:47:19 +02:00
Iterator operator--(int)
2020-04-01 02:17:49 +02:00
{
2020-04-12 15:47:19 +02:00
Iterator tmp(*this);
++*this;
return tmp;
2020-04-01 02:17:49 +02:00
}
2020-04-12 15:47:19 +02:00
Iterator operator++(int)
{
2020-04-12 15:47:19 +02:00
Iterator tmp(*this);
++*this;
return tmp;
}
2020-04-12 15:47:19 +02:00
private:
Node *node;
Array<Node *> traversal;
};
2020-06-02 11:46:18 +02:00
2020-04-12 15:47:19 +02:00
V &operator[](const K &key)
{
root = splay(root, key);
if (root == nullptr || root->pair.key < key || key < root->pair.key)
{
2020-04-12 15:47:19 +02:00
root = insert(root, key);
_size++;
}
2020-04-12 15:47:19 +02:00
refreshIterators();
return root->pair.value;
}
Iterator find(const K &key)
{
root = splay(root, key);
if (root == nullptr || root->pair.key != key)
{
return endIt;
}
2020-04-12 15:47:19 +02:00
return Iterator(root);
}
Iterator erase(const K &key)
{
root = remove(root, key);
refreshIterators();
return Iterator(root);
}
void clear()
{
delete root;
root = nullptr;
_size = 0;
refreshIterators();
}
bool exists(const K &key)
{
return find(key) != endIt;
}
Iterator begin() const
{
return beginIt;
}
Iterator end() const
{
return endIt;
}
bool empty() const
{
return root == nullptr;
}
uint32 size() const
{
return _size;
}
private:
void refreshIterators()
{
Node *beginNode = root;
if (root == nullptr)
{
2020-04-12 15:47:19 +02:00
beginIt = Iterator(nullptr);
}
else
{
Array<Node *> beginTraversal;
while (beginNode != nullptr)
2020-04-01 02:17:49 +02:00
{
2020-04-12 15:47:19 +02:00
beginTraversal.add(beginNode);
beginNode = beginNode->leftChild;
2020-04-01 02:17:49 +02:00
}
2020-04-12 15:47:19 +02:00
beginNode = beginTraversal.back();
beginTraversal.pop();
beginIt = Iterator(beginNode, std::move(beginTraversal));
}
Node *endNode = root;
if (root == nullptr)
{
endIt = Iterator(nullptr);
}
else
{
Array<Node *> endTraversal;
while (endNode != nullptr)
2020-04-01 02:17:49 +02:00
{
2020-04-12 15:47:19 +02:00
endTraversal.add(endNode);
endNode = endNode->rightChild;
2020-04-01 02:17:49 +02:00
}
2020-04-12 15:47:19 +02:00
endIt = Iterator(endNode, std::move(endTraversal));
}
}
Node *root;
Iterator beginIt;
Iterator endIt;
uint32 _size;
Node *rotateRight(Node *node)
{
Node *y = node->leftChild;
node->leftChild = y->rightChild;
y->rightChild = node;
return y;
}
Node *rotateLeft(Node *node)
{
Node *y = node->rightChild;
node->rightChild = y->leftChild;
y->leftChild = node;
return y;
}
Node *makeNode(const K &key)
{
return new Node(key);
}
Node *insert(Node *r, const K &key)
{
if (r == nullptr)
return makeNode(key);
r = splay(r, key);
if (!(r->pair.key < key || key < r->pair.key))
return r;
Node *newNode = makeNode(key);
if (key < r->pair.key)
{
newNode->rightChild = r;
newNode->leftChild = r->leftChild;
r->leftChild = nullptr;
}
else
{
newNode->leftChild = r;
newNode->rightChild = r->rightChild;
r->rightChild = nullptr;
}
return newNode;
}
Node *remove(Node *r, const K &key)
{
Node *temp;
if (!r)
return nullptr;
r = splay(r, key);
if (r->pair.key < key || key < r->pair.key)
return r;
if (!r->leftChild)
{
temp = r;
r = r->rightChild;
}
else
{
temp = r;
r = splay(r->leftChild, key);
r->rightChild = temp->rightChild;
}
temp->leftChild = nullptr;
temp->rightChild = nullptr;
_size--;
delete temp;
return r;
}
Node *splay(Node *r, const K &key)
{
if (r == nullptr || !(r->pair.key < key || key < r->pair.key))
{
return r;
}
if (key < r->pair.key)
{
if (r->leftChild == nullptr)
return r;
if (key < r->leftChild->pair.key)
2020-04-01 02:17:49 +02:00
{
2020-04-12 15:47:19 +02:00
r->leftChild->leftChild = splay(r->leftChild->leftChild, key);
r = rotateRight(r);
2020-04-01 02:17:49 +02:00
}
2020-04-12 15:47:19 +02:00
else if (r->leftChild->pair.key < key)
2020-04-01 02:17:49 +02:00
{
2020-04-12 15:47:19 +02:00
r->leftChild->rightChild = splay(r->leftChild->rightChild, key);
if (r->leftChild->rightChild != nullptr)
2020-04-01 02:17:49 +02:00
{
2020-04-12 15:47:19 +02:00
r->leftChild = rotateLeft(r->leftChild);
2020-04-01 02:17:49 +02:00
}
}
2020-04-12 15:47:19 +02:00
return (r->leftChild == nullptr) ? r : rotateRight(r);
}
2020-04-12 15:47:19 +02:00
else
{
2020-04-12 15:47:19 +02:00
if (r->rightChild == nullptr)
return r;
2020-04-12 15:47:19 +02:00
if (key < r->rightChild->pair.key)
{
2020-04-12 15:47:19 +02:00
r->rightChild->leftChild = splay(r->rightChild->leftChild, key);
2020-04-12 15:47:19 +02:00
if (r->rightChild->leftChild != nullptr)
{
2020-04-12 15:47:19 +02:00
r->rightChild = rotateRight(r->rightChild);
}
}
2020-04-12 15:47:19 +02:00
else if (r->rightChild->pair.key < key)
{
2020-04-12 15:47:19 +02:00
r->rightChild->rightChild = splay(r->rightChild->rightChild, key);
r = rotateLeft(r);
}
2020-04-12 15:47:19 +02:00
return (r->rightChild == nullptr) ? r : rotateLeft(r);
}
2020-04-12 15:47:19 +02:00
}
};
} // namespace Seele