summaryrefslogtreecommitdiff
path: root/Tests/AK/TestRedBlackTree.cpp
blob: 0b0848bf678e6819d586041b6605abba157085f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
 * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibTest/TestCase.h>

#include <AK/Random.h>
#include <AK/RedBlackTree.h>

TEST_CASE(construct)
{
    RedBlackTree<int, int> empty;
    EXPECT(empty.is_empty());
    EXPECT(empty.size() == 0);
}

TEST_CASE(ints)
{
    RedBlackTree<int, int> ints;
    ints.insert(1, 10);
    ints.insert(3, 20);
    ints.insert(2, 30);
    EXPECT_EQ(ints.size(), 3u);
    EXPECT_EQ(*ints.find(3), 20);
    EXPECT_EQ(*ints.find(2), 30);
    EXPECT_EQ(*ints.find(1), 10);
    EXPECT(!ints.remove(4));
    EXPECT(ints.remove(2));
    EXPECT(ints.remove(1));
    EXPECT(ints.remove(3));
    EXPECT_EQ(ints.size(), 0u);
}

TEST_CASE(largest_smaller_than)
{
    RedBlackTree<int, int> ints;
    ints.insert(1, 10);
    ints.insert(11, 20);
    ints.insert(21, 30);
    EXPECT_EQ(ints.size(), 3u);
    EXPECT_EQ(*ints.find_largest_not_above(3), 10);
    EXPECT_EQ(*ints.find_largest_not_above(17), 20);
    EXPECT_EQ(*ints.find_largest_not_above(22), 30);
    EXPECT_EQ(ints.find_largest_not_above(-5), nullptr);
}

TEST_CASE(key_ordered_iteration)
{
    constexpr auto amount = 10000;
    RedBlackTree<int, size_t> test;
    Array<int, amount> keys {};

    // generate random key order
    for (int i = 0; i < amount; i++) {
        keys[i] = i;
    }
    for (size_t i = 0; i < amount; i++) {
        swap(keys[i], keys[get_random<size_t>() % amount]);
    }

    // insert random keys
    for (size_t i = 0; i < amount; i++) {
        test.insert(keys[i], keys[i]);
    }

    // check key-ordered iteration
    size_t index = 0;
    for (auto& value : test) {
        EXPECT(value == index++);
    }

    // ensure we can remove all of them (aka, tree structure is not destroyed somehow)
    for (size_t i = 0; i < amount; i++) {
        EXPECT(test.remove(i));
    }
}

TEST_CASE(clear)
{
    RedBlackTree<size_t, size_t> test;
    for (size_t i = 0; i < 1000; i++) {
        test.insert(i, i);
    }
    test.clear();
    EXPECT_EQ(test.size(), 0u);
}

TEST_CASE(find_smallest_not_below_iterator)
{
    RedBlackTree<size_t, size_t> test;

    for (size_t i = 0; i < 8; i++) {
        auto above_all = test.find_smallest_not_below_iterator(i);
        EXPECT(above_all.is_end());

        test.insert(i, i);

        auto only_just_added_i_is_not_below = test.find_smallest_not_below_iterator(i);
        EXPECT(!only_just_added_i_is_not_below.is_end());
        EXPECT_EQ(only_just_added_i_is_not_below.key(), i);
    }

    {
        auto smallest_not_below_two = test.find_smallest_not_below_iterator(2);
        EXPECT(!smallest_not_below_two.is_end());
        EXPECT_EQ(smallest_not_below_two.key(), 2u);
    }

    test.remove(2);

    {
        auto smallest_not_below_two_without_two = test.find_smallest_not_below_iterator(2);
        EXPECT(!smallest_not_below_two_without_two.is_end());
        EXPECT_EQ(smallest_not_below_two_without_two.key(), 3u);
    }

    {
        auto smallest_not_below_one = test.find_smallest_not_below_iterator(1);
        EXPECT(!smallest_not_below_one.is_end());
        EXPECT_EQ(smallest_not_below_one.key(), 1u);
    }

    {
        auto smallest_not_below_three = test.find_smallest_not_below_iterator(3);
        EXPECT(!smallest_not_below_three.is_end());
        EXPECT_EQ(smallest_not_below_three.key(), 3u);
    }
}

TEST_CASE(iterators_on_emptied_tree)
{
    RedBlackTree<size_t, size_t> test;
    test.insert(1, 1);
    test.remove(1);
    EXPECT_EQ(test.size(), 0u);
    auto begin_iterator = test.begin();
    auto end_iterator = test.end();
    EXPECT(begin_iterator.is_end());

    EXPECT_EQ(begin_iterator, end_iterator);
    EXPECT(!(begin_iterator != end_iterator));
}