mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
43 lines
874 B
C++
43 lines
874 B
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include <algorithm>
|
|
#include <set>
|
|
#include <vector>
|
|
|
|
#include "revng/Support/Assert.h"
|
|
|
|
/// Stack where an element cannot be re-inserted in it's already in the stack
|
|
template<typename T>
|
|
class UniquedStack {
|
|
public:
|
|
void insert(T Element) {
|
|
if (!Set.contains(Element)) {
|
|
revng_assert(Element->getParent() != nullptr);
|
|
Set.insert(Element);
|
|
Queue.push_back(Element);
|
|
}
|
|
}
|
|
|
|
bool empty() const { return Queue.empty(); }
|
|
|
|
T pop() {
|
|
T Result = Queue.back();
|
|
Queue.pop_back();
|
|
Set.erase(Result);
|
|
return Result;
|
|
}
|
|
|
|
/// Reverses the stack in its current status
|
|
void reverse() { std::reverse(Queue.begin(), Queue.end()); }
|
|
|
|
size_t size() const { return Queue.size(); }
|
|
|
|
private:
|
|
std::set<T> Set;
|
|
std::vector<T> Queue;
|
|
};
|