src/cx/linked_list.h

Tue, 28 Dec 2021 14:25:05 +0100

author
Mike Becker <universe@uap-core.de>
date
Tue, 28 Dec 2021 14:25:05 +0100
changeset 487
4bd19279778c
parent 486
d7ca126eab7f
child 488
9138acaa494b
permissions
-rw-r--r--

use c99 bool + add test for low level find

     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 /**
    29  * \file linked_list.h
    30  * \brief Linked list implementation.
    31  * \details Also provides several low-level functions for custom linked list implementations.
    32  * \author Mike Becker
    33  * \author Olaf Wintermann
    34  * \version 3.0
    35  * \copyright 2-Clause BSD License
    36  */
    38 #ifndef UCX_LINKED_LIST_H
    39 #define UCX_LINKED_LIST_H
    41 #include "common.h"
    42 #include "list.h"
    44 #ifdef __cplusplus
    45 extern "C" {
    46 #endif
    48 /**
    49  * Allocates a linked list for storing elements with \p item_size bytes each.
    50  *
    51  * Elements added to the list are copied.
    52  *
    53  * @param allocator the allocator for allocating the list nodes
    54  * @param comparator the comparator for the elements
    55  * @param item_size the size of each element in bytes
    56  * @return the created list
    57  */
    58 CxList cxLinkedListCreate(
    59         CxAllocator allocator,
    60         CxListComparator comparator,
    61         size_t item_size
    62 );
    64 /**
    65  * Allocates a linked list for storing pointers.
    66  *
    67  * If you want to store the elements directly in this list, use cxLinkedListCreate().
    68  *
    69  * @param allocator the allocator for allocating the list nodes
    70  * @param comparator the comparator for the elements
    71  * @return the created list
    72  */
    73 CxList cxPointerLinkedListCreate(
    74         CxAllocator allocator,
    75         CxListComparator comparator
    76 );
    78 /**
    79  * Deallocates the memory of the entire list.
    80  *
    81  * \attention If this is a pointer list, the memory the pointers are referring to is \em not freed.
    82  *
    83  * @param list the list
    84  */
    85 void cxLinkedListDestroy(CxList list);
    87 /**
    88  * Finds the node at a certain index.
    89  *
    90  * This function can be used to start at an arbitrary position within the list.
    91  * If the search index is large than the start index, \p loc_advance must denote
    92  * the location of some sort of \c next pointer (i.e. a pointer to the next node).
    93  * But it is also possible that the search index is smaller than the start index
    94  * (e.g. in cases where traversing a list backwards is faster) in which case
    95  * \p loc_advance must denote the location of some sort of \c prev pointer
    96  * (i.e. a pointer to the previous node).
    97  *
    98  * @param start a pointer to the start node
    99  * @param start_index the start index
   100  * @param loc_advance the location of the pointer to advance
   101  * @param index the search index
   102  * @return the node found at the specified index
   103  */
   104 void *cx_linked_list_at(
   105         void *start,
   106         size_t start_index,
   107         ptrdiff_t loc_advance,
   108         size_t index
   109 ) __attribute__((__nonnull__));
   111 /**
   112  * Finds the index of an element within a linked list.
   113  *
   114  * @param start a pointer to the start node
   115  * @param loc_advance the location of the pointer to advance
   116  * @param loc_data the location of the \c data pointer within your node struct
   117  * @param follow_ptr \c false if the pointer denoted by \p loc_data shall be passed to the \p cmp_func.
   118  * If \c true, the data at \p loc_data is assumed to be a pointer, dereferenced, and then passed to \p cmp_func.
   119  * @param cmp_func a compare function to compare \p elem against the node data
   120  * @param elem a pointer to the element to find
   121  * @return the index of the element or a past-one index if the element could not be found
   122  */
   123 size_t cx_linked_list_find(
   124         void *start,
   125         ptrdiff_t loc_advance,
   126         ptrdiff_t loc_data,
   127         bool follow_ptr,
   128         CxListComparator cmp_func,
   129         void *elem
   130 ) __attribute__((__nonnull__));
   132 /**
   133  * Finds the first node in a linked list.
   134  *
   135  * The function starts with the pointer denoted by \p node and traverses the list
   136  * along a prev pointer whose location within the node struct is
   137  * denoted by \p loc_prev.
   138  *
   139  * @param node a pointer to a node in the list
   140  * @param loc_prev the location of the \c prev pointer
   141  * @return a pointer to the first node
   142  */
   143 void *cx_linked_list_first(
   144         void *node,
   145         ptrdiff_t loc_prev
   146 ) __attribute__((__nonnull__));
   148 /**
   149  * Finds the last node in a linked list.
   150  *
   151  * The function starts with the pointer denoted by \p node and traverses the list
   152  * along a next pointer whose location within the node struct is
   153  * denoted by \p loc_next.
   154  *
   155  * @param node a pointer to a node in the list
   156  * @param loc_next the location of the \c next pointer
   157  * @return a pointer to the last node
   158  */
   159 void *cx_linked_list_last(
   160         void *node,
   161         ptrdiff_t loc_next
   162 ) __attribute__((__nonnull__));
   164 /**
   165  * Finds the predecessor of a node in case it is not linked.
   166  *
   167  * \remark If \p node is not contained in the list starting with \p begin, the behavior is undefined.
   168  *
   169  * @param begin the node where to start the search
   170  * @param loc_next the location of the \c next pointer
   171  * @param node the successor of the node to find
   172  * @return the node or \c NULL if \p node has no predecessor
   173  */
   174 void *cx_linked_list_prev(
   175         void *begin,
   176         ptrdiff_t loc_next,
   177         void *node
   178 ) __attribute__((__nonnull__));
   180 /**
   181  * Adds a new node to a linked list.
   182  * The node must not be part of any list already.
   183  *
   184  * \remark One of the pointers \p begin or \p end may be \c NULL, but not both.
   185  *
   186  * @param begin a pointer to the begin node pointer (if your list has one)
   187  * @param end a pointer to the end node pointer (if your list has one)
   188  * @param loc_prev the location of a \c prev pointer within your node struct (negative if your struct does not have one)
   189  * @param loc_next the location of a \c next pointer within your node struct (required)
   190  * @param new_node a pointer to the node that shall be appended
   191  */
   192 void cx_linked_list_add(
   193         void **begin,
   194         void **end,
   195         ptrdiff_t loc_prev,
   196         ptrdiff_t loc_next,
   197         void *new_node
   198 ) __attribute__((__nonnull__(5)));
   200 /**
   201  * Prepends a new node to a linked list.
   202  * The node must not be part of any list already.
   203  *
   204  * \remark One of the pointers \p begin or \p end may be \c NULL, but not both.
   205  *
   206  * @param begin a pointer to the begin node pointer (if your list has one)
   207  * @param end a pointer to the end node pointer (if your list has one)
   208  * @param loc_prev the location of a \c prev pointer within your node struct (negative if your struct does not have one)
   209  * @param loc_next the location of a \c next pointer within your node struct (required)
   210  * @param new_node a pointer to the node that shall be prepended
   211  */
   212 void cx_linked_list_prepend(
   213         void **begin,
   214         void **end,
   215         ptrdiff_t loc_prev,
   216         ptrdiff_t loc_next,
   217         void *new_node
   218 ) __attribute__((__nonnull__(5)));
   220 /**
   221  * Links two nodes.
   222  *
   223  * @param left the new predecessor of \p right
   224  * @param right the new successor of \p left
   225  * @param loc_prev the location of a \c prev pointer within your node struct (negative if your struct does not have one)
   226  * @param loc_next the location of a \c next pointer within your node struct (required)
   227  */
   228 void cx_linked_list_link(
   229         void *left,
   230         void *right,
   231         ptrdiff_t loc_prev,
   232         ptrdiff_t loc_next
   233 ) __attribute__((__nonnull__));
   235 /**
   236  * Unlinks two nodes.
   237  *
   238  * If right is not the successor of left, the behavior is undefined.
   239  *
   240  * @param left the predecessor of \p right
   241  * @param right the successor of \p left
   242  * @param loc_prev the location of a \c prev pointer within your node struct (negative if your struct does not have one)
   243  * @param loc_next the location of a \c next pointer within your node struct (required)
   244  */
   245 void cx_linked_list_unlink(
   246         void *left,
   247         void *right,
   248         ptrdiff_t loc_prev,
   249         ptrdiff_t loc_next
   250 ) __attribute__((__nonnull__));
   252 /**
   253  * Inserts a new node after a given node of a linked list.
   254  * The new node must not be part of any list already.
   255  *
   256  * \note If you specify \c NULL as the \p node to insert after, this function needs either the \p begin or
   257  * the \p end pointer to determine the start of the list. Then the new node will be prepended to the list.
   258  *
   259  * @param begin a pointer to the begin node pointer (if your list has one)
   260  * @param end a pointer to the end node pointer (if your list has one)
   261  * @param loc_prev the location of a \c prev pointer within your node struct (negative if your struct does not have one)
   262  * @param loc_next the location of a \c next pointer within your node struct (required)
   263  * @param node the node after which to insert (\c NULL if you want to prepend the node to the list)
   264  * @param new_node a pointer to the node that shall be prepended
   265  */
   266 void cx_linked_list_insert(
   267         void **begin,
   268         void **end,
   269         ptrdiff_t loc_prev,
   270         ptrdiff_t loc_next,
   271         void *node,
   272         void *new_node
   273 ) __attribute__((__nonnull__(6)));
   275 /**
   276  * Inserts a chain of nodes after a given node of a linked list.
   277  * The chain must not be part of any list already.
   278  *
   279  * If you do not explicitly specify the end of the chain, it will be determined by traversing
   280  * the \c next pointer.
   281  *
   282  * \note If you specify \c NULL as the \p node to insert after, this function needs either the \p begin or
   283  * the \p end pointer to determine the start of the list. If only the \p end pointer is specified, you also need
   284  * to provide a valid \p loc_prev location.
   285  * Then the chain will be prepended to the list.
   286  *
   287  * @param begin a pointer to the begin node pointer (if your list has one)
   288  * @param end a pointer to the end node pointer (if your list has one)
   289  * @param loc_prev the location of a \c prev pointer within your node struct (negative if your struct does not have one)
   290  * @param loc_next the location of a \c next pointer within your node struct (required)
   291  * @param node the node after which to insert (\c NULL to prepend the chain to the list)
   292  * @param insert_begin a pointer to the first node of the chain that shall be inserted
   293  * @param insert_end a pointer to the last node of the chain (or NULL if the last node shall be determined)
   294  */
   295 void cx_linked_list_insert_chain(
   296         void **begin,
   297         void **end,
   298         ptrdiff_t loc_prev,
   299         ptrdiff_t loc_next,
   300         void *node,
   301         void *insert_begin,
   302         void *insert_end
   303 ) __attribute__((__nonnull__(6)));
   305 /**
   306  * Removes a node from the linked list.
   307  *
   308  * If the node to remove is the begin (resp. end) node of the list and if \p begin (resp. \p end)
   309  * addresses are provided, the pointers are adjusted accordingly.
   310  *
   311  * The following combinations of arguments are valid (more arguments are optional):
   312  * \li \p loc_next and \p loc_prev (ancestor node is determined by using the prev pointer, overall O(1) performance)
   313  * \li \p loc_next and \p begin (ancestor node is determined by list traversal, overall O(n) performance)
   314  *
   315  * \remark The \c next and \c prev pointers of the removed node are not cleared by this function and may still be used
   316  * to traverse to a former adjacent node in the list.
   317  *
   318  * @param begin a pointer to the begin node pointer (optional)
   319  * @param end a pointer to the end node pointer (optional)
   320  * @param loc_prev the location of a \c prev pointer within your node struct (negative if your struct does not have one)
   321  * @param loc_next the location of a \c next pointer within your node struct (required)
   322  * @param node the node to remove
   323  */
   324 void cx_linked_list_remove(
   325         void **begin,
   326         void **end,
   327         ptrdiff_t loc_prev,
   328         ptrdiff_t loc_next,
   329         void *node
   330 ) __attribute__((__nonnull__(5)));
   333 /**
   334  * Determines the size of a linked list starting with \p node.
   335  * @param node the first node
   336  * @param loc_next the location of the \c next pointer within the node struct
   337  * @return the size of the list or zero if \p node is \c NULL
   338  */
   339 size_t cx_linked_list_size(
   340         void *node,
   341         ptrdiff_t loc_next
   342 );
   344 /**
   345  * Sorts a linked list based on a comparison function.
   346  *
   347  * This function can work with linked lists of the following structures:
   348  * \code
   349  * typedef struct node node;
   350  * struct node {
   351  *   node* prev;
   352  *   node* next;
   353  *   my_payload data; // in this case set follow_ptr = 0
   354  * }
   355  *
   356  * typedef struct ptr_node ptr_node;
   357  * struct ptr_node {
   358  *   ptr_node* prev;
   359  *   ptr_node* next;
   360  *   my_payload* data; // in this case set follow_ptr = 1
   361  * }
   362  * \endcode
   363  *
   364  * @note This is a recursive function with at most logarithmic recursion depth.
   365  *
   366  * @param begin a pointer to the begin node pointer (required)
   367  * @param end a pointer to the end node pointer (optional)
   368  * @param loc_prev the location of a \c prev pointer within your node struct (negative if not present)
   369  * @param loc_next the location of a \c next pointer within your node struct (required)
   370  * @param loc_data the location of the \c data pointer within your node struct
   371  * @param follow_ptr \c false if the pointer denoted by \p loc_data shall be passed to the \p cmp_func.
   372  * If \c true, the data at \p loc_data is assumed to be a pointer, dereferenced, and then passed to \p cmp_func.
   373  * @param cmp_func the compare function defining the sort order
   374  */
   375 void cx_linked_list_sort(
   376         void **begin,
   377         void **end,
   378         ptrdiff_t loc_prev,
   379         ptrdiff_t loc_next,
   380         ptrdiff_t loc_data,
   381         bool follow_ptr,
   382         CxListComparator cmp_func
   383 ) __attribute__((__nonnull__(1, 7)));
   386 /**
   387  * Compares two lists element wise.
   388  *
   389  * @param begin_left the begin of the left list (\c NULL denotes an empty list)
   390  * @param begin_right the begin of the right list  (\c NULL denotes an empty list)
   391  * @param loc_advance the location of the pointer to advance
   392  * @param loc_data the location of the \c data pointer within your node struct
   393  * @param follow_ptr \c false if the pointer denoted by \p loc_data shall be passed to the \p cmp_func.
   394  * If \c true, the data at \p loc_data is assumed to be a pointer, dereferenced, and then passed to \p cmp_func.
   395  * @param cmp_func the function to compare the elements
   396  * @return
   397  */
   398 int cx_linked_list_compare(
   399         void *begin_left,
   400         void *begin_right,
   401         ptrdiff_t loc_advance,
   402         ptrdiff_t loc_data,
   403         bool follow_ptr,
   404         CxListComparator cmp_func
   405 ) __attribute__((__nonnull__(6)));
   407 /**
   408  * Reverses the order of the nodes in a linked list.
   409  *
   410  * @param begin a pointer to the begin node pointer (required)
   411  * @param end a pointer to the end node pointer (optional)
   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)
   414  */
   415 void cx_linked_list_reverse(
   416         void **begin,
   417         void **end,
   418         ptrdiff_t loc_prev,
   419         ptrdiff_t loc_next
   420 ) __attribute__((__nonnull__(1)));
   422 #ifdef __cplusplus
   423 } /* extern "C" */
   424 #endif
   426 #endif /* UCX_LINKED_LIST_H */

mercurial