summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/csset_erase.c
blob: 9fa40682d342023fb349bd733c686ed2c68aecd6 (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
#include <stdio.h>

#define i_key int
#include <stc/csset.h>

int main()
{
    csset_int set = c_make(csset_int, {30, 20, 80, 40, 60, 90, 10, 70, 50});

    c_foreach (k, csset_int, set)
        printf(" %d", *k.ref);
    puts("");

    int val = 64;
    csset_int_iter it;
    printf("Show values >= %d:\n", val);
    it = csset_int_lower_bound(&set, val);

    c_foreach (k, csset_int, it, csset_int_end(&set)) 
        printf(" %d", *k.ref);
    puts("");

    printf("Erase values >= %d:\n", val);
    while (it.ref)
        it = csset_int_erase_at(&set, it);

    c_foreach (k, csset_int, set)
        printf(" %d", *k.ref);
    puts("");

    val = 40;
    printf("Erase values < %d:\n", val);
    it = csset_int_lower_bound(&set, val);
    csset_int_erase_range(&set, csset_int_begin(&set), it);

    c_foreach (k, csset_int, set)
        printf(" %d", *k.ref);
    puts("");

    csset_int_drop(&set);
}