mirror of
https://github.com/bkthomps/Containers.git
synced 2025-11-16 12:34:47 +00:00
Add unordered_multiset
This commit is contained in:
379
src/unordered_multiset.c
Normal file
379
src/unordered_multiset.c
Normal file
@@ -0,0 +1,379 @@
|
||||
/*
|
||||
* Copyright (c) 2017 Bailey Thompson
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <memory.h>
|
||||
#include <errno.h>
|
||||
#include "unordered_multiset.h"
|
||||
|
||||
static const int STARTING_BUCKETS = 8;
|
||||
static const double RESIZE_AT = 0.75;
|
||||
static const double RESIZE_RATIO = 1.5;
|
||||
|
||||
struct _unordered_multiset {
|
||||
size_t key_size;
|
||||
unsigned long (*hash)(const void *const key);
|
||||
int (*comparator)(const void *const one, const void *const two);
|
||||
int size;
|
||||
int used;
|
||||
int capacity;
|
||||
struct node **buckets;
|
||||
};
|
||||
|
||||
struct node {
|
||||
int count;
|
||||
void *key;
|
||||
unsigned long hash;
|
||||
struct node *next;
|
||||
};
|
||||
|
||||
/**
|
||||
* Initializes an unordered multi-set, which is a collection of keys, hashed by
|
||||
* keys.
|
||||
*
|
||||
* @param data_size The size of each element in the unordered multi-set.
|
||||
* @param hash The hash function which computes the hash from the key.
|
||||
* @param comparator The comparator function which compares two keys.
|
||||
*
|
||||
* @return The newly-initialized unordered multi-set, or NULL if memory
|
||||
* allocation error.
|
||||
*/
|
||||
unordered_multiset
|
||||
unordered_multiset_init(const size_t key_size,
|
||||
unsigned long (*hash)(const void *const),
|
||||
int (*comparator)(const void *const, const void *const))
|
||||
{
|
||||
struct _unordered_multiset *const init =
|
||||
malloc(sizeof(struct _unordered_multiset));
|
||||
if (init == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
init->key_size = key_size;
|
||||
init->hash = hash;
|
||||
init->comparator = comparator;
|
||||
init->size = 0;
|
||||
init->used = 0;
|
||||
init->capacity = STARTING_BUCKETS;
|
||||
init->buckets = calloc(STARTING_BUCKETS, sizeof(struct node *));
|
||||
if (init->buckets == NULL) {
|
||||
free(init);
|
||||
return NULL;
|
||||
}
|
||||
return init;
|
||||
}
|
||||
|
||||
/*
|
||||
* Adds the specified node to the multi-set.
|
||||
*/
|
||||
static void unordered_multiset_add_item(unordered_multiset me,
|
||||
struct node *const add)
|
||||
{
|
||||
const int index = (int) (add->hash % me->capacity);
|
||||
add->next = NULL;
|
||||
if (me->buckets[index] == NULL) {
|
||||
me->buckets[index] = add;
|
||||
return;
|
||||
}
|
||||
struct node *traverse = me->buckets[index];
|
||||
while (traverse->next != NULL) {
|
||||
traverse = traverse->next;
|
||||
}
|
||||
traverse->next = add;
|
||||
}
|
||||
|
||||
/**
|
||||
* Rehashes all the keys in the unordered multi-set. Used when storing
|
||||
* references and changing the keys. This should rarely be used.
|
||||
*
|
||||
* @param me The unordered multi-set to rehash.
|
||||
*
|
||||
* @return 0 No error.
|
||||
* -ENOMEM Out of memory.
|
||||
*/
|
||||
int unordered_multiset_rehash(unordered_multiset me)
|
||||
{
|
||||
struct node **old_buckets = me->buckets;
|
||||
me->buckets = calloc((size_t) me->capacity, sizeof(struct node *));
|
||||
if (me->buckets == NULL) {
|
||||
me->buckets = old_buckets;
|
||||
return -ENOMEM;
|
||||
}
|
||||
for (int i = 0; i < me->capacity; i++) {
|
||||
struct node *traverse = old_buckets[i];
|
||||
while (traverse != NULL) {
|
||||
struct node *const backup = traverse->next;
|
||||
traverse->hash = me->hash(traverse->key);
|
||||
unordered_multiset_add_item(me, traverse);
|
||||
traverse = backup;
|
||||
}
|
||||
}
|
||||
free(old_buckets);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the size of the unordered multi-set.
|
||||
*
|
||||
* @param me The unordered multi-set to check.
|
||||
*
|
||||
* @return The size of the unordered multi-set.
|
||||
*/
|
||||
int unordered_multiset_size(unordered_multiset me)
|
||||
{
|
||||
return me->size;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines whether or not the unordered multi-set is empty.
|
||||
*
|
||||
* @param me The unordered multi-set to check.
|
||||
*
|
||||
* @return If the unordered multi-set is empty.
|
||||
*/
|
||||
bool unordered_multiset_is_empty(unordered_multiset me)
|
||||
{
|
||||
return unordered_multiset_size(me) == 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Increases the size of the multi-set and redistributes the nodes.
|
||||
*/
|
||||
static int unordered_multiset_resize(unordered_multiset me)
|
||||
{
|
||||
const int old_capacity = me->capacity;
|
||||
me->capacity *= RESIZE_RATIO;
|
||||
struct node **old_buckets = me->buckets;
|
||||
me->buckets = calloc((size_t) me->capacity, sizeof(struct node *));
|
||||
if (me->buckets == NULL) {
|
||||
me->buckets = old_buckets;
|
||||
return -ENOMEM;
|
||||
}
|
||||
for (int i = 0; i < old_capacity; i++) {
|
||||
struct node *traverse = old_buckets[i];
|
||||
while (traverse != NULL) {
|
||||
struct node *const backup = traverse->next;
|
||||
unordered_multiset_add_item(me, traverse);
|
||||
traverse = backup;
|
||||
}
|
||||
}
|
||||
free(old_buckets);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Determines if an element is equal to the key.
|
||||
*/
|
||||
inline static bool unordered_multiset_is_equal(unordered_multiset me,
|
||||
const struct node *const item,
|
||||
const unsigned long hash,
|
||||
const void *const key)
|
||||
{
|
||||
return item->hash == hash && me->comparator(item->key, key) == 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Creates an element to add.
|
||||
*/
|
||||
static struct node *const
|
||||
unordered_multiset_create_element(unordered_multiset me,
|
||||
const unsigned long hash,
|
||||
const void *const key)
|
||||
{
|
||||
struct node *const init = malloc(sizeof(struct node));
|
||||
if (init == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
init->count = 1;
|
||||
init->key = malloc(me->key_size);
|
||||
if (init->key == NULL) {
|
||||
free(init);
|
||||
return NULL;
|
||||
}
|
||||
memcpy(init->key, key, me->key_size);
|
||||
init->hash = hash;
|
||||
init->next = NULL;
|
||||
return init;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds an element to the unordered multi-set if the unordered multi-set does
|
||||
* not already contain it.
|
||||
*
|
||||
* @param me The unordered multi-set to add to.
|
||||
* @param data The element to add.
|
||||
*
|
||||
* @return 0 No error.
|
||||
* -ENOMEM Out of memory.
|
||||
*/
|
||||
int unordered_multiset_put(unordered_multiset me, void *const key)
|
||||
{
|
||||
|
||||
const unsigned long hash = me->hash(key);
|
||||
const int index = (int) (hash % me->capacity);
|
||||
if (me->buckets[index] == NULL) {
|
||||
me->buckets[index] = unordered_multiset_create_element(me, hash, key);
|
||||
if (me->buckets[index] == NULL) {
|
||||
return -ENOMEM;
|
||||
}
|
||||
} else {
|
||||
struct node *traverse = me->buckets[index];
|
||||
if (unordered_multiset_is_equal(me, traverse, hash, key)) {
|
||||
traverse->count++;
|
||||
me->size++;
|
||||
return 0;
|
||||
}
|
||||
while (traverse->next != NULL) {
|
||||
traverse = traverse->next;
|
||||
if (unordered_multiset_is_equal(me, traverse, hash, key)) {
|
||||
traverse->count++;
|
||||
me->size++;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
traverse->next = unordered_multiset_create_element(me, hash, key);
|
||||
if (traverse->next == NULL) {
|
||||
return -ENOMEM;
|
||||
}
|
||||
}
|
||||
me->size++;
|
||||
me->used++;
|
||||
if (me->used >= RESIZE_AT * me->capacity) {
|
||||
return unordered_multiset_resize(me);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines the count of a specific key in the unordered multi-set.
|
||||
*
|
||||
* @param me The unordered multi-set to check for the count.
|
||||
* @param data The element to check.
|
||||
*
|
||||
* @return The count of a specific key in the unordered multi-set.
|
||||
*/
|
||||
int unordered_multiset_count(unordered_multiset me, void *const key)
|
||||
{
|
||||
const unsigned long hash = me->hash(key);
|
||||
const int index = (int) (hash % me->capacity);
|
||||
const struct node *traverse = me->buckets[index];
|
||||
while (traverse != NULL) {
|
||||
if (unordered_multiset_is_equal(me, traverse, hash, key)) {
|
||||
return traverse->count;
|
||||
}
|
||||
traverse = traverse->next;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines if the unordered multi-set contains the specified element.
|
||||
*
|
||||
* @param me The unordered multi-set to check for the element.
|
||||
* @param data The element to check.
|
||||
*
|
||||
* @return If the unordered multi-set contained the element.
|
||||
*/
|
||||
bool unordered_multiset_contains(unordered_multiset me, void *const key)
|
||||
{
|
||||
return unordered_multiset_count(me, key) > 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes the element from the unordered multi-set if it contains it.
|
||||
*
|
||||
* @param me The unordered multi-set to remove an element from.
|
||||
* @param data The element to remove.
|
||||
*
|
||||
* @return If the unordered multi-set contained the element.
|
||||
*/
|
||||
bool unordered_multiset_remove(unordered_multiset me, void *const key)
|
||||
{
|
||||
const unsigned long hash = me->hash(key);
|
||||
const int index = (int) (hash % me->capacity);
|
||||
if (me->buckets[index] == NULL) {
|
||||
return false;
|
||||
}
|
||||
struct node *traverse = me->buckets[index];
|
||||
if (unordered_multiset_is_equal(me, traverse, hash, key)) {
|
||||
traverse->count--;
|
||||
if (traverse->count == 0) {
|
||||
me->buckets[index] = traverse->next;
|
||||
free(traverse->key);
|
||||
free(traverse);
|
||||
me->used--;
|
||||
}
|
||||
me->size--;
|
||||
return true;
|
||||
}
|
||||
while (traverse->next != NULL) {
|
||||
if (unordered_multiset_is_equal(me, traverse->next, hash, key)) {
|
||||
struct node *const backup = traverse->next;
|
||||
backup->count--;
|
||||
if (backup->count == 0) {
|
||||
traverse->next = traverse->next->next;
|
||||
free(backup->key);
|
||||
free(backup);
|
||||
me->used--;
|
||||
}
|
||||
me->size--;
|
||||
return true;
|
||||
}
|
||||
traverse = traverse->next;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Clears the elements from the unordered multi-set.
|
||||
*
|
||||
* @param me The unordered multi-set to clear.
|
||||
*/
|
||||
void unordered_multiset_clear(unordered_multiset me)
|
||||
{
|
||||
for (int i = 0; i < me->capacity; i++) {
|
||||
struct node *traverse = me->buckets[i];
|
||||
while (traverse != NULL) {
|
||||
struct node *const backup = traverse;
|
||||
traverse = traverse->next;
|
||||
free(backup->key);
|
||||
free(backup);
|
||||
}
|
||||
me->buckets[i] = NULL;
|
||||
}
|
||||
me->size = 0;
|
||||
me->used = 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Frees the unordered multi-set memory.
|
||||
*
|
||||
* @param me The unordered multi-set to free from memory.
|
||||
*
|
||||
* @return NULL
|
||||
*/
|
||||
unordered_multiset unordered_multiset_destroy(unordered_multiset me)
|
||||
{
|
||||
unordered_multiset_clear(me);
|
||||
free(me->buckets);
|
||||
free(me);
|
||||
return NULL;
|
||||
}
|
||||
52
src/unordered_multiset.h
Normal file
52
src/unordered_multiset.h
Normal file
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright (c) 2017 Bailey Thompson
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef CONTAINERS_UNORDERED_MULTISET_H
|
||||
#define CONTAINERS_UNORDERED_MULTISET_H
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef struct _unordered_multiset *unordered_multiset;
|
||||
|
||||
// Starting
|
||||
unordered_multiset
|
||||
unordered_multiset_init(size_t key_size,
|
||||
unsigned long (*hash)(const void *const key),
|
||||
int (*comparator)(const void *const one,
|
||||
const void *const two));
|
||||
|
||||
// Utility
|
||||
int unordered_multiset_rehash(unordered_multiset me);
|
||||
int unordered_multiset_size(unordered_multiset me);
|
||||
bool unordered_multiset_is_empty(unordered_multiset me);
|
||||
|
||||
// Accessing
|
||||
int unordered_multiset_put(unordered_multiset me, void *key);
|
||||
int unordered_multiset_count(unordered_multiset me, void *key);
|
||||
bool unordered_multiset_contains(unordered_multiset me, void *key);
|
||||
bool unordered_multiset_remove(unordered_multiset me, void *key);
|
||||
|
||||
// Ending
|
||||
void unordered_multiset_clear(unordered_multiset me);
|
||||
unordered_multiset unordered_multiset_destroy(unordered_multiset me);
|
||||
|
||||
#endif /* CONTAINERS_UNORDERED_MULTISET_H */
|
||||
@@ -12,5 +12,6 @@ int main()
|
||||
test_array();
|
||||
test_unordered_set();
|
||||
test_unordered_map();
|
||||
test_unordered_multiset();
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -15,5 +15,6 @@ void test_set(void);
|
||||
void test_array(void);
|
||||
void test_unordered_set(void);
|
||||
void test_unordered_map(void);
|
||||
void test_unordered_multiset(void);
|
||||
|
||||
#endif /* CONTAINERS_TEST_H */
|
||||
|
||||
140
tst/unordered_multiset.c
Normal file
140
tst/unordered_multiset.c
Normal file
@@ -0,0 +1,140 @@
|
||||
#include "test.h"
|
||||
#include "../src/unordered_multiset.h"
|
||||
|
||||
static int compare_int(const void *const one, const void *const two)
|
||||
{
|
||||
const int a = *(int *) one;
|
||||
const int b = *(int *) two;
|
||||
return a - b;
|
||||
}
|
||||
|
||||
static int hash_count;
|
||||
|
||||
static unsigned long hash_int(const void *const key)
|
||||
{
|
||||
hash_count++;
|
||||
unsigned long hash = 17;
|
||||
hash = 31 * hash + *(int *) key;
|
||||
return hash;
|
||||
}
|
||||
|
||||
void test_unordered_multiset(void)
|
||||
{
|
||||
unordered_multiset a =
|
||||
unordered_multiset_init(sizeof(int), hash_int, compare_int);
|
||||
assert(unordered_multiset_size(a) == 0);
|
||||
assert(unordered_multiset_is_empty(a));
|
||||
int b = 4;
|
||||
unordered_multiset_put(a, &b);
|
||||
assert(unordered_multiset_size(a) == 1);
|
||||
unordered_multiset_put(a, &b);
|
||||
assert(unordered_multiset_size(a) == 2);
|
||||
assert(!unordered_multiset_is_empty(a));
|
||||
assert(unordered_multiset_contains(a, &b));
|
||||
b = 7;
|
||||
assert(!unordered_multiset_contains(a, &b));
|
||||
unordered_multiset_put(a, &b);
|
||||
assert(unordered_multiset_size(a) == 3);
|
||||
assert(unordered_multiset_contains(a, &b));
|
||||
unordered_multiset_remove(a, &b);
|
||||
assert(unordered_multiset_size(a) == 2);
|
||||
assert(!unordered_multiset_contains(a, &b));
|
||||
b = 4;
|
||||
unordered_multiset_remove(a, &b);
|
||||
assert(unordered_multiset_size(a) == 1);
|
||||
unordered_multiset_remove(a, &b);
|
||||
assert(unordered_multiset_size(a) == 0);
|
||||
int c[10] = {5, 9, 4, -5, 0, 6, 1, 5, 7, 2};
|
||||
for (int i = 0; i < 10; i++) {
|
||||
unordered_multiset_put(a, &c[i]);
|
||||
assert(unordered_multiset_contains(a, &c[i]));
|
||||
}
|
||||
assert(unordered_multiset_size(a) == 10);
|
||||
for (int i = 0; i < 10; i++) {
|
||||
assert(unordered_multiset_contains(a, &c[i]));
|
||||
}
|
||||
for (int i = -100; i < 100; i++) {
|
||||
bool contains = false;
|
||||
for (int j = 0; j < 10; j++) {
|
||||
if (c[j] == i) {
|
||||
contains = true;
|
||||
}
|
||||
}
|
||||
assert(unordered_multiset_contains(a, &i) == contains);
|
||||
}
|
||||
int num = -3;
|
||||
assert(!unordered_multiset_remove(a, &num));
|
||||
assert(unordered_multiset_size(a) == 10);
|
||||
assert(!unordered_multiset_contains(a, &num));
|
||||
num = 6;
|
||||
assert(unordered_multiset_remove(a, &num));
|
||||
assert(unordered_multiset_size(a) == 9);
|
||||
assert(!unordered_multiset_contains(a, &num));
|
||||
num = 4;
|
||||
assert(unordered_multiset_remove(a, &num));
|
||||
assert(unordered_multiset_size(a) == 8);
|
||||
assert(!unordered_multiset_contains(a, &num));
|
||||
num = 7;
|
||||
assert(unordered_multiset_remove(a, &num));
|
||||
assert(unordered_multiset_size(a) == 7);
|
||||
assert(!unordered_multiset_contains(a, &num));
|
||||
num = 9;
|
||||
assert(unordered_multiset_remove(a, &num));
|
||||
assert(unordered_multiset_size(a) == 6);
|
||||
assert(!unordered_multiset_contains(a, &num));
|
||||
num = -5;
|
||||
assert(unordered_multiset_remove(a, &num));
|
||||
assert(unordered_multiset_size(a) == 5);
|
||||
assert(!unordered_multiset_contains(a, &num));
|
||||
num = 0;
|
||||
assert(unordered_multiset_remove(a, &num));
|
||||
assert(unordered_multiset_size(a) == 4);
|
||||
assert(!unordered_multiset_contains(a, &num));
|
||||
num = 1;
|
||||
assert(unordered_multiset_remove(a, &num));
|
||||
assert(unordered_multiset_size(a) == 3);
|
||||
assert(!unordered_multiset_contains(a, &num));
|
||||
num = 5;
|
||||
assert(unordered_multiset_remove(a, &num));
|
||||
assert(unordered_multiset_size(a) == 2);
|
||||
assert(unordered_multiset_contains(a, &num));
|
||||
num = 2;
|
||||
assert(unordered_multiset_remove(a, &num));
|
||||
assert(unordered_multiset_size(a) == 1);
|
||||
assert(!unordered_multiset_contains(a, &num));
|
||||
num = 5;
|
||||
assert(unordered_multiset_remove(a, &num));
|
||||
assert(unordered_multiset_size(a) == 0);
|
||||
assert(!unordered_multiset_contains(a, &num));
|
||||
// Add a lot of items and remove individually.
|
||||
for (int i = 5000; i < 6000; i++) {
|
||||
unordered_multiset_put(a, &i);
|
||||
assert(unordered_multiset_contains(a, &i));
|
||||
}
|
||||
assert(unordered_multiset_size(a) == 1000);
|
||||
for (int i = 5000; i < 6000; i++) {
|
||||
unordered_multiset_remove(a, &i);
|
||||
assert(!unordered_multiset_contains(a, &i));
|
||||
}
|
||||
assert(unordered_multiset_size(a) == 0);
|
||||
assert(unordered_multiset_is_empty(a));
|
||||
unordered_multiset_clear(a);
|
||||
assert(unordered_multiset_size(a) == 0);
|
||||
assert(unordered_multiset_is_empty(a));
|
||||
// Add a lot of items and clear.
|
||||
for (int i = 5000; i < 6000; i++) {
|
||||
unordered_multiset_put(a, &i);
|
||||
assert(unordered_multiset_contains(a, &i));
|
||||
}
|
||||
assert(unordered_multiset_size(a) == 1000);
|
||||
hash_count = 0;
|
||||
unordered_multiset_rehash(a);
|
||||
assert(hash_count == 1000);
|
||||
unordered_multiset_clear(a);
|
||||
int p = 0xdeadbeef;
|
||||
assert(!unordered_multiset_remove(a, &p));
|
||||
assert(unordered_multiset_size(a) == 0);
|
||||
assert(unordered_multiset_is_empty(a));
|
||||
a = unordered_multiset_destroy(a);
|
||||
assert(a == NULL);
|
||||
}
|
||||
Reference in New Issue
Block a user