Tue, 21 Oct 2025 16:20:51 +0200
update ucx
| 174 | 1 | /* |
| 2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
| 3 | * | |
| 4 | * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved. | |
| 5 | * | |
| 6 | * Redistribution and use in source and binary forms, with or without | |
| 7 | * modification, are permitted provided that the following conditions are met: | |
| 8 | * | |
| 9 | * 1. Redistributions of source code must retain the above copyright | |
| 10 | * notice, this list of conditions and the following disclaimer. | |
| 11 | * | |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright | |
| 13 | * notice, this list of conditions and the following disclaimer in the | |
| 14 | * documentation and/or other materials provided with the distribution. | |
| 15 | * | |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
| 17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
| 20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| 21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
| 22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
| 23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
| 24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
| 25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
| 26 | * POSSIBILITY OF SUCH DAMAGE. | |
| 27 | */ | |
| 28 | /** | |
| 440 | 29 | * @file linked_list.h |
| 30 | * @brief Linked list implementation. | |
| 31 | * @author Mike Becker | |
| 32 | * @author Olaf Wintermann | |
| 33 | * @copyright 2-Clause BSD License | |
| 174 | 34 | */ |
| 35 | ||
| 36 | #ifndef UCX_LINKED_LIST_H | |
| 37 | #define UCX_LINKED_LIST_H | |
| 38 | ||
| 39 | #include "common.h" | |
| 40 | #include "list.h" | |
| 41 | ||
| 42 | #ifdef __cplusplus | |
| 43 | extern "C" { | |
| 44 | #endif | |
| 45 | ||
| 46 | /** | |
| 845 | 47 | * Metadata for a linked list. |
| 48 | */ | |
| 49 | typedef struct cx_linked_list_s { | |
| 50 | /** Base members. */ | |
| 51 | struct cx_list_s base; | |
| 52 | /** | |
| 53 | * Location of the prev pointer (mandatory). | |
| 54 | */ | |
| 55 | off_t loc_prev; | |
| 56 | /** | |
| 57 | * Location of the next pointer (mandatory). | |
| 58 | */ | |
| 59 | off_t loc_next; | |
| 60 | /** | |
| 61 | * Location of the payload (mandatory). | |
| 62 | */ | |
| 63 | off_t loc_data; | |
| 64 | /** | |
| 65 | * Additional bytes to allocate @em behind the payload (e.g. for metadata). | |
| 66 | */ | |
| 67 | size_t extra_data_len; | |
| 68 | /** | |
| 69 | * Pointer to the first node. | |
| 70 | */ | |
| 71 | void *begin; | |
| 72 | /** | |
| 73 | * Pointer to the last node. | |
| 74 | */ | |
| 75 | void *end; | |
| 76 | } cx_linked_list; | |
| 77 | ||
| 78 | /** | |
| 440 | 79 | * Allocates a linked list for storing elements with @p elem_size bytes each. |
| 174 | 80 | * |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
81 | * If @p elem_size is #CX_STORE_POINTERS, the created list stores pointers instead of |
| 845 | 82 | * copies of the added elements, and the compare function will be automatically set |
| 83 | * to cx_cmp_ptr() if none is given. | |
| 174 | 84 | * |
| 85 | * @param allocator the allocator for allocating the list nodes | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
86 | * (if @c NULL, the cxDefaultAllocator will be used) |
| 174 | 87 | * @param comparator the comparator for the elements |
| 440 | 88 | * (if @c NULL, and the list is not storing pointers, sort and find |
|
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
89 | * functions will not work) |
| 324 | 90 | * @param elem_size the size of each element in bytes |
| 174 | 91 | * @return the created list |
| 92 | */ | |
| 870 | 93 | cx_attr_nodiscard cx_attr_malloc cx_attr_dealloc(cxListFree, 1) |
| 94 | CX_EXPORT CxList *cxLinkedListCreate(const CxAllocator *allocator, | |
| 95 | cx_compare_func comparator, size_t elem_size); | |
| 174 | 96 | |
| 97 | /** | |
| 440 | 98 | * Allocates a linked list for storing elements with @p elem_size bytes each. |
| 174 | 99 | * |
| 100 | * The list will use cxDefaultAllocator and no comparator function. If you want | |
| 101 | * to call functions that need a comparator, you must either set one immediately | |
| 102 | * after list creation or use cxLinkedListCreate(). | |
| 103 | * | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
104 | * If @p elem_size is #CX_STORE_POINTERS, the created list stores pointers instead of |
| 845 | 105 | * copies of the added elements, and the compare function will be automatically set |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
106 | * to cx_cmp_ptr(). |
| 174 | 107 | * |
| 440 | 108 | * @param elem_size (@c size_t) the size of each element in bytes |
| 109 | * @return (@c CxList*) the created list | |
| 174 | 110 | */ |
| 324 | 111 | #define cxLinkedListCreateSimple(elem_size) \ |
| 870 | 112 | cxLinkedListCreate(NULL, NULL, elem_size) |
| 174 | 113 | |
| 114 | /** | |
| 115 | * Finds the node at a certain index. | |
| 116 | * | |
| 117 | * This function can be used to start at an arbitrary position within the list. | |
| 845 | 118 | * If the search index is larger than the start index, @p loc_advance must denote |
| 119 | * the location of a @c next pointer (i.e., a pointer to the next node). | |
| 174 | 120 | * But it is also possible that the search index is smaller than the start index |
| 845 | 121 | * (e.g., in cases where traversing a list backwards is faster). |
| 122 | * In that case @p loc_advance must denote the location of a @c prev pointer | |
| 123 | * (i.e., a pointer to the previous node). | |
| 174 | 124 | * |
| 125 | * @param start a pointer to the start node | |
| 126 | * @param start_index the start index | |
| 127 | * @param loc_advance the location of the pointer to advance | |
| 128 | * @param index the search index | |
| 129 | * @return the node found at the specified index | |
| 130 | */ | |
| 870 | 131 | cx_attr_nonnull cx_attr_nodiscard |
| 132 | CX_EXPORT void *cx_linked_list_at(const void *start,size_t start_index, | |
| 133 | ptrdiff_t loc_advance, size_t index); | |
| 174 | 134 | |
| 135 | /** | |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
136 | * Finds the node containing an element within a linked list. |
| 174 | 137 | * |
| 138 | * @param start a pointer to the start node | |
| 139 | * @param loc_advance the location of the pointer to advance | |
| 440 | 140 | * @param loc_data the location of the @c data pointer within your node struct |
| 141 | * @param cmp_func a compare function to compare @p elem against the node data | |
| 174 | 142 | * @param elem a pointer to the element to find |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
143 | * @param found_index an optional pointer where the index of the found node |
|
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
144 | * (given that @p start has index 0) is stored |
| 845 | 145 | * @return a pointer to the found node or @c NULL if no matching node was found |
| 174 | 146 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
147 | cx_attr_nonnull_arg(1, 4, 5) |
| 870 | 148 | CX_EXPORT void *cx_linked_list_find(const void *start, ptrdiff_t loc_advance, |
| 149 | ptrdiff_t loc_data, cx_compare_func cmp_func, const void *elem, | |
| 150 | size_t *found_index); | |
|
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
151 | |
|
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
152 | /** |
| 174 | 153 | * Finds the first node in a linked list. |
| 154 | * | |
| 440 | 155 | * The function starts with the pointer denoted by @p node and traverses the list |
| 174 | 156 | * along a prev pointer whose location within the node struct is |
| 440 | 157 | * denoted by @p loc_prev. |
| 174 | 158 | * |
| 159 | * @param node a pointer to a node in the list | |
| 440 | 160 | * @param loc_prev the location of the @c prev pointer |
| 174 | 161 | * @return a pointer to the first node |
| 162 | */ | |
| 870 | 163 | cx_attr_nonnull cx_attr_returns_nonnull |
| 164 | CX_EXPORT void *cx_linked_list_first(const void *node, ptrdiff_t loc_prev); | |
| 174 | 165 | |
| 166 | /** | |
| 167 | * Finds the last node in a linked list. | |
| 168 | * | |
| 440 | 169 | * The function starts with the pointer denoted by @p node and traverses the list |
| 174 | 170 | * along a next pointer whose location within the node struct is |
| 440 | 171 | * denoted by @p loc_next. |
| 174 | 172 | * |
| 173 | * @param node a pointer to a node in the list | |
| 440 | 174 | * @param loc_next the location of the @c next pointer |
| 174 | 175 | * @return a pointer to the last node |
| 176 | */ | |
| 870 | 177 | cx_attr_nonnull cx_attr_returns_nonnull |
| 178 | CX_EXPORT void *cx_linked_list_last(const void *node, ptrdiff_t loc_next); | |
| 174 | 179 | |
| 180 | /** | |
| 181 | * Finds the predecessor of a node in case it is not linked. | |
| 182 | * | |
| 440 | 183 | * @remark If @p node is not contained in the list starting with @p begin, the behavior is undefined. |
| 174 | 184 | * |
| 185 | * @param begin the node where to start the search | |
| 440 | 186 | * @param loc_next the location of the @c next pointer |
| 174 | 187 | * @param node the successor of the node to find |
| 440 | 188 | * @return the node or @c NULL if @p node has no predecessor |
| 174 | 189 | */ |
| 440 | 190 | cx_attr_nonnull |
| 870 | 191 | CX_EXPORT void *cx_linked_list_prev(const void *begin, ptrdiff_t loc_next, const void *node); |
| 174 | 192 | |
| 193 | /** | |
| 194 | * Adds a new node to a linked list. | |
| 845 | 195 | * The node must not be part of any list yet. |
| 174 | 196 | * |
| 440 | 197 | * @remark One of the pointers @p begin or @p end may be @c NULL, but not both. |
| 174 | 198 | * |
| 440 | 199 | * @param begin a pointer to the beginning node pointer (if your list has one) |
| 174 | 200 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 201 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 202 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 203 | * @param new_node a pointer to the node that shall be appended |
| 204 | */ | |
| 440 | 205 | cx_attr_nonnull_arg(5) |
| 870 | 206 | CX_EXPORT void cx_linked_list_add(void **begin, void **end, ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node); |
| 174 | 207 | |
| 208 | /** | |
| 209 | * Prepends a new node to a linked list. | |
| 845 | 210 | * The node must not be part of any list yet. |
| 174 | 211 | * |
| 440 | 212 | * @remark One of the pointers @p begin or @p end may be @c NULL, but not both. |
| 174 | 213 | * |
| 440 | 214 | * @param begin a pointer to the beginning node pointer (if your list has one) |
| 174 | 215 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 216 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 217 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 218 | * @param new_node a pointer to the node that shall be prepended |
| 219 | */ | |
| 440 | 220 | cx_attr_nonnull_arg(5) |
| 870 | 221 | CX_EXPORT void cx_linked_list_prepend(void **begin, void **end, ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node); |
| 174 | 222 | |
| 223 | /** | |
| 224 | * Links two nodes. | |
| 225 | * | |
| 440 | 226 | * @param left the new predecessor of @p right |
| 227 | * @param right the new successor of @p left | |
| 228 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) | |
| 229 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 230 | */ |
| 440 | 231 | cx_attr_nonnull |
| 870 | 232 | CX_EXPORT void cx_linked_list_link(void *left, void *right, ptrdiff_t loc_prev, ptrdiff_t loc_next); |
| 174 | 233 | |
| 234 | /** | |
| 235 | * Unlinks two nodes. | |
| 236 | * | |
| 237 | * If right is not the successor of left, the behavior is undefined. | |
| 238 | * | |
| 440 | 239 | * @param left the predecessor of @p right |
| 240 | * @param right the successor of @p left | |
| 241 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) | |
| 242 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 243 | */ |
| 440 | 244 | cx_attr_nonnull |
| 870 | 245 | CX_EXPORT void cx_linked_list_unlink(void *left, void *right, ptrdiff_t loc_prev, ptrdiff_t loc_next); |
| 174 | 246 | |
| 247 | /** | |
| 248 | * Inserts a new node after a given node of a linked list. | |
| 845 | 249 | * The new node must not be part of any list yet. |
| 174 | 250 | * |
| 440 | 251 | * @note If you specify @c NULL as the @p node to insert after, this function needs either the @p begin or |
| 252 | * the @p end pointer to determine the start of the list. Then the new node will be prepended to the list. | |
| 174 | 253 | * |
| 440 | 254 | * @param begin a pointer to the beginning node pointer (if your list has one) |
| 174 | 255 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 256 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 257 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 258 | * @param node the node after which to insert (@c NULL if you want to prepend the node to the list) | |
| 324 | 259 | * @param new_node a pointer to the node that shall be inserted |
| 174 | 260 | */ |
| 440 | 261 | cx_attr_nonnull_arg(6) |
| 870 | 262 | CX_EXPORT void cx_linked_list_insert(void **begin, void **end, |
| 263 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node, void *new_node); | |
| 174 | 264 | |
| 265 | /** | |
| 266 | * Inserts a chain of nodes after a given node of a linked list. | |
| 845 | 267 | * The chain must not be part of any list yet. |
| 174 | 268 | * |
| 269 | * If you do not explicitly specify the end of the chain, it will be determined by traversing | |
| 440 | 270 | * the @c next pointer. |
| 174 | 271 | * |
| 440 | 272 | * @note If you specify @c NULL as the @p node to insert after, this function needs either the @p begin or |
| 273 | * the @p end pointer to determine the start of the list. If only the @p end pointer is specified, you also need | |
| 274 | * to provide a valid @p loc_prev location. | |
| 174 | 275 | * Then the chain will be prepended to the list. |
| 276 | * | |
| 440 | 277 | * @param begin a pointer to the beginning node pointer (if your list has one) |
| 174 | 278 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 279 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 280 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 281 | * @param node the node after which to insert (@c NULL to prepend the chain to the list) | |
| 174 | 282 | * @param insert_begin a pointer to the first node of the chain that shall be inserted |
| 283 | * @param insert_end a pointer to the last node of the chain (or NULL if the last node shall be determined) | |
| 284 | */ | |
| 440 | 285 | cx_attr_nonnull_arg(6) |
| 870 | 286 | CX_EXPORT void cx_linked_list_insert_chain(void **begin, void **end, |
| 287 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node, void *insert_begin, void *insert_end); | |
| 324 | 288 | |
| 289 | /** | |
| 290 | * Inserts a node into a sorted linked list. | |
| 845 | 291 | * The new node must not be part of any list yet. |
| 324 | 292 | * |
| 440 | 293 | * If the list starting with the node pointed to by @p begin is not sorted |
| 324 | 294 | * already, the behavior is undefined. |
| 295 | * | |
| 440 | 296 | * @param begin a pointer to the beginning node pointer (required) |
| 324 | 297 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 298 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 299 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 324 | 300 | * @param new_node a pointer to the node that shall be inserted |
| 301 | * @param cmp_func a compare function that will receive the node pointers | |
| 302 | */ | |
| 440 | 303 | cx_attr_nonnull_arg(1, 5, 6) |
| 870 | 304 | CX_EXPORT void cx_linked_list_insert_sorted(void **begin, void **end, |
| 305 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node, cx_compare_func cmp_func); | |
| 324 | 306 | |
| 307 | /** | |
| 308 | * Inserts a chain of nodes into a sorted linked list. | |
| 845 | 309 | * The chain must not be part of any list yet. |
| 324 | 310 | * |
| 440 | 311 | * If either the list starting with the node pointed to by @p begin or the list |
| 312 | * starting with @p insert_begin is not sorted, the behavior is undefined. | |
| 324 | 313 | * |
| 440 | 314 | * @attention In contrast to cx_linked_list_insert_chain(), the source chain |
| 324 | 315 | * will be broken and inserted into the target list so that the resulting list |
| 845 | 316 | * will be sorted according to @p cmp_func. That means each node in the source |
| 324 | 317 | * chain may be re-linked with nodes from the target list. |
| 318 | * | |
| 440 | 319 | * @param begin a pointer to the beginning node pointer (required) |
| 324 | 320 | * @param end a pointer to the end node pointer (if your list has one) |
| 440 | 321 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 322 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 324 | 323 | * @param insert_begin a pointer to the first node of the chain that shall be inserted |
| 324 | * @param cmp_func a compare function that will receive the node pointers | |
| 325 | */ | |
| 440 | 326 | cx_attr_nonnull_arg(1, 5, 6) |
| 870 | 327 | CX_EXPORT void cx_linked_list_insert_sorted_chain(void **begin, void **end, |
| 328 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *insert_begin, cx_compare_func cmp_func); | |
| 174 | 329 | |
| 330 | /** | |
| 845 | 331 | * Inserts a node into a sorted linked list if no other node with the same value already exists. |
| 332 | * The new node must not be part of any list yet. | |
| 333 | * | |
| 334 | * If the list starting with the node pointed to by @p begin is not sorted | |
| 335 | * already, the behavior is undefined. | |
| 336 | * | |
| 337 | * @param begin a pointer to the beginning node pointer (required) | |
| 338 | * @param end a pointer to the end node pointer (if your list has one) | |
| 339 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) | |
| 340 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 341 | * @param new_node a pointer to the node that shall be inserted | |
| 342 | * @param cmp_func a compare function that will receive the node pointers | |
| 343 | * @retval zero when the node was inserted | |
| 344 | * @retval non-zero when a node with the same value already exists | |
| 345 | */ | |
| 346 | cx_attr_nonnull_arg(1, 5, 6) | |
| 870 | 347 | CX_EXPORT int cx_linked_list_insert_unique(void **begin, void **end, |
| 348 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *new_node, cx_compare_func cmp_func); | |
| 845 | 349 | |
| 350 | /** | |
| 351 | * Inserts a chain of nodes into a sorted linked list, avoiding duplicates. | |
| 352 | * The chain must not be part of any list yet. | |
| 353 | * | |
| 354 | * If either the list starting with the node pointed to by @p begin or the list | |
| 355 | * starting with @p insert_begin is not sorted, the behavior is undefined. | |
| 356 | * | |
| 357 | * @attention In contrast to cx_linked_list_insert_sorted(), not all nodes of the | |
| 358 | * chain might be added. This function returns a new chain consisting of all the duplicates. | |
| 359 | * | |
| 360 | * @param begin a pointer to the beginning node pointer (required) | |
| 361 | * @param end a pointer to the end node pointer (if your list has one) | |
| 362 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) | |
| 363 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 364 | * @param insert_begin a pointer to the first node of the chain that shall be inserted | |
| 365 | * @param cmp_func a compare function that will receive the node pointers | |
| 366 | * @return a pointer to a new chain with all duplicates that were not inserted (or @c NULL when there were no duplicates) | |
| 367 | */ | |
| 870 | 368 | cx_attr_nonnull_arg(1, 5, 6) cx_attr_nodiscard |
| 369 | CX_EXPORT void *cx_linked_list_insert_unique_chain(void **begin, void **end, | |
| 370 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *insert_begin, cx_compare_func cmp_func); | |
| 845 | 371 | |
| 372 | /** | |
| 440 | 373 | * Removes a chain of nodes from the linked list. |
| 174 | 374 | * |
| 845 | 375 | * If one of the nodes to remove is the beginning (resp. end) node of the list, and if @p begin (resp. @p end) |
| 174 | 376 | * addresses are provided, the pointers are adjusted accordingly. |
| 377 | * | |
| 378 | * The following combinations of arguments are valid (more arguments are optional): | |
| 440 | 379 | * @li @p loc_next and @p loc_prev (ancestor node is determined by using the prev pointer, overall O(1) performance) |
| 380 | * @li @p loc_next and @p begin (ancestor node is determined by list traversal, overall O(n) performance) | |
| 381 | * | |
|
629
0385a450c2a6
add list initializer
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
471
diff
changeset
|
382 | * @remark The @c next and @c prev pointers of the removed chain are not cleared by this function and may still be used |
| 440 | 383 | * to traverse to a former adjacent node in the list, or within the chain. |
| 174 | 384 | * |
| 440 | 385 | * @param begin a pointer to the beginning node pointer (optional) |
| 386 | * @param end a pointer to the end node pointer (optional) | |
| 387 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) | |
| 388 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 389 | * @param node the start node of the chain | |
| 390 | * @param num the number of nodes to remove | |
| 391 | * @return the actual number of nodes that were removed (can be less when the list did not have enough nodes) | |
| 392 | */ | |
| 393 | cx_attr_nonnull_arg(5) | |
| 870 | 394 | CX_EXPORT size_t cx_linked_list_remove_chain(void **begin, void **end, |
| 395 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node, size_t num); | |
| 440 | 396 | |
| 397 | /** | |
| 398 | * Removes a node from the linked list. | |
| 399 | * | |
| 845 | 400 | * If the node to remove is the beginning (resp. end) node of the list, and if @p begin (resp. @p end) |
| 440 | 401 | * addresses are provided, the pointers are adjusted accordingly. |
| 402 | * | |
| 403 | * The following combinations of arguments are valid (more arguments are optional): | |
| 404 | * @li @p loc_next and @p loc_prev (ancestor node is determined by using the prev pointer, overall O(1) performance) | |
| 405 | * @li @p loc_next and @p begin (ancestor node is determined by list traversal, overall O(n) performance) | |
| 406 | * | |
| 407 | * @remark The @c next and @c prev pointers of the removed node are not cleared by this function and may still be used | |
| 174 | 408 | * to traverse to a former adjacent node in the list. |
| 409 | * | |
| 440 | 410 | * @param begin a pointer to the beginning node pointer (optional) |
| 174 | 411 | * @param end a pointer to the end node pointer (optional) |
| 440 | 412 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 413 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 414 | * @param node the node to remove |
| 415 | */ | |
| 440 | 416 | cx_attr_nonnull_arg(5) |
| 870 | 417 | CX_EXPORT void cx_linked_list_remove(void **begin, void **end, |
| 418 | ptrdiff_t loc_prev, ptrdiff_t loc_next, void *node); | |
| 174 | 419 | |
| 420 | /** | |
| 440 | 421 | * Determines the size of a linked list starting with @p node. |
| 422 | * | |
| 174 | 423 | * @param node the first node |
| 440 | 424 | * @param loc_next the location of the @c next pointer within the node struct |
| 425 | * @return the size of the list or zero if @p node is @c NULL | |
| 174 | 426 | */ |
|
471
063a9f29098c
ucx update + fix doc attach/detach + fix ui_set with unbound values
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
440
diff
changeset
|
427 | cx_attr_nodiscard |
| 870 | 428 | CX_EXPORT size_t cx_linked_list_size(const void *node, ptrdiff_t loc_next); |
| 174 | 429 | |
| 430 | /** | |
| 431 | * Sorts a linked list based on a comparison function. | |
| 432 | * | |
| 433 | * This function can work with linked lists of the following structure: | |
| 440 | 434 | * @code |
| 174 | 435 | * typedef struct node node; |
| 436 | * struct node { | |
| 437 | * node* prev; | |
| 438 | * node* next; | |
| 439 | * my_payload data; | |
| 440 | * } | |
| 440 | 441 | * @endcode |
| 174 | 442 | * |
| 443 | * @note This is a recursive function with at most logarithmic recursion depth. | |
| 444 | * | |
| 440 | 445 | * @param begin a pointer to the beginning node pointer (required) |
| 174 | 446 | * @param end a pointer to the end node pointer (optional) |
| 440 | 447 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if not present) |
| 448 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 449 | * @param loc_data the location of the @c data pointer within your node struct | |
| 174 | 450 | * @param cmp_func the compare function defining the sort order |
| 451 | */ | |
| 440 | 452 | cx_attr_nonnull_arg(1, 6) |
| 870 | 453 | CX_EXPORT void cx_linked_list_sort(void **begin, void **end, |
| 454 | ptrdiff_t loc_prev, ptrdiff_t loc_next, ptrdiff_t loc_data, cx_compare_func cmp_func); | |
| 174 | 455 | |
| 456 | ||
| 457 | /** | |
| 458 | * Compares two lists element wise. | |
| 459 | * | |
| 845 | 460 | * @attention Both lists must have the same structure. |
| 174 | 461 | * |
| 440 | 462 | * @param begin_left the beginning of the left list (@c NULL denotes an empty list) |
| 463 | * @param begin_right the beginning of the right list (@c NULL denotes an empty list) | |
| 174 | 464 | * @param loc_advance the location of the pointer to advance |
| 440 | 465 | * @param loc_data the location of the @c data pointer within your node struct |
| 174 | 466 | * @param cmp_func the function to compare the elements |
| 440 | 467 | * @return the first non-zero result of invoking @p cmp_func or: negative if the left list is smaller than the |
| 174 | 468 | * right list, positive if the left list is larger than the right list, zero if both lists are equal. |
| 469 | */ | |
| 440 | 470 | cx_attr_nonnull_arg(5) |
| 870 | 471 | CX_EXPORT int cx_linked_list_compare(const void *begin_left, const void *begin_right, |
| 472 | ptrdiff_t loc_advance, ptrdiff_t loc_data, cx_compare_func cmp_func); | |
| 174 | 473 | |
| 474 | /** | |
| 475 | * Reverses the order of the nodes in a linked list. | |
| 476 | * | |
| 440 | 477 | * @param begin a pointer to the beginning node pointer (required) |
| 174 | 478 | * @param end a pointer to the end node pointer (optional) |
| 440 | 479 | * @param loc_prev the location of a @c prev pointer within your node struct (negative if your struct does not have one) |
| 480 | * @param loc_next the location of a @c next pointer within your node struct (required) | |
| 174 | 481 | */ |
| 440 | 482 | cx_attr_nonnull_arg(1) |
| 870 | 483 | CX_EXPORT void cx_linked_list_reverse(void **begin, void **end, ptrdiff_t loc_prev, ptrdiff_t loc_next); |
| 174 | 484 | |
| 485 | #ifdef __cplusplus | |
| 486 | } // extern "C" | |
| 487 | #endif | |
| 488 | ||
| 489 | #endif // UCX_LINKED_LIST_H |