1#include <gtest/gtest.h>
106 for (
int i = 0; i < 100; ++i)
111 for (
int i = 0; i < 100; i += 10)
119 for (
int i = 0; i < 50; ++i)
124 for (
int i = 0; i < 50; i += 2)
130 for (
int i = 1; i < 50; i += 2)
T & insert(const T &item)
Insert a new item by copy.
T remove()
Remove the first item of the list.
constexpr bool is_empty() const noexcept
Return true if list is empty.
size_t size() const noexcept
Count the number of elements of the list.
TEST_F(DynTreapTest, DefaultConstructor)
Main namespace for Aleph-w library functions.
DynList< T > maps(const C &c, Op op)
Classic map operation.
Dynamic mapping implemented with treap trees.