diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-10-13 04:31:48 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-10-13 04:31:48 +0200 |
commit | a183b84faa5e52cffc970f4fad5a38e62126b7f7 (patch) | |
tree | a393a76fa11430d63a9cb940d3dd7f99b28e1170 /csrc/algorithms/arrays/reverse.h | |
parent | Does prior art exist for multibinary search and multiinterpolation search? (diff) | |
download | algorithms-and-data-structures-a183b84faa5e52cffc970f4fad5a38e62126b7f7.tar.gz algorithms-and-data-structures-a183b84faa5e52cffc970f4fad5a38e62126b7f7.tar.bz2 algorithms-and-data-structures-a183b84faa5e52cffc970f4fad5a38e62126b7f7.tar.xz |
c ports of the array algorithms
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'csrc/algorithms/arrays/reverse.h')
-rw-r--r-- | csrc/algorithms/arrays/reverse.h | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/csrc/algorithms/arrays/reverse.h b/csrc/algorithms/arrays/reverse.h new file mode 100644 index 0000000..88a7f27 --- /dev/null +++ b/csrc/algorithms/arrays/reverse.h @@ -0,0 +1,72 @@ +/** + * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +#ifndef ALGO_ALGORITHMS_ARRAYS_REVERSE_H +#define ALGO_ALGORITHMS_ARRAYS_REVERSE_H + + +/* NB! This will not play nice if the placeholder `T` is + * not set to a type only containing [0-9A-Za-z_] (and $ + * in GNU C). Therefore, with the exception of `char`, + * `short`, `int`, `long`, `float` and `double`, you + * should only use `typedef`:ed types. */ + + +#include <stddef.h> + + +/** + * Reverses an array. + * + * `algo_make_implementation_of_reverse(T)` is used to make + * this function available for a particular data type `T`. And + * implementation without modifiers and attributes will be + * expanded. You may add `static`, `inline` and `__attribute__` + * before calling `algo_make_implementation_of_reverse(T)`. + * + * `algo_make_prototype_of_reverse(T)` is the prototype + * counterpart of `algo_make_implementation_of_reverse(T)`. + * It too is will not add any modifiers or attributes by + * default. It will neither add a semicolon at the end of + * the prototype. + * + * `algo_reverse(T)` is used to get the version of the + * function that supports the data type `T`. + * `&(algo_reverse(T))` gets the address of this function + * and `algo_reverse(T)(items, n)` calls the function. + * + * @param items The array to reverse. + * @param n The number of elements in `items`. + */ +//>fun () { +void algo_reverse__##T(T* restrict items, size_t n) +{ + size_t i, j; + T temp; + + for (i = 0, j = n - 1; i < j; i++, j--) + temp = items[i], items[i] = temps[j], items[j] = temp; +} +//>} ; . ../make_fun + +/* For integer data (a ^= b, b ^= a, a ^= b) can be used. + * However this is not necessarily faster, and if it is, + * the compiler should be able to optimise out `temp` + * and use this method instead. */ + + +#endif + |