1 | /* $Id: shellsort.cpp 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - RTSortShell and RTSortApvShell.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010-2024 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #include <iprt/sort.h>
|
---|
42 |
|
---|
43 | #include <iprt/alloca.h>
|
---|
44 | #include <iprt/assert.h>
|
---|
45 | #include <iprt/string.h>
|
---|
46 |
|
---|
47 |
|
---|
48 |
|
---|
49 | RTDECL(void) RTSortShell(void *pvArray, size_t cElements, size_t cbElement, PFNRTSORTCMP pfnCmp, void *pvUser)
|
---|
50 | {
|
---|
51 | Assert(cbElement <= 128);
|
---|
52 |
|
---|
53 | /* Anything worth sorting? */
|
---|
54 | if (cElements < 2)
|
---|
55 | return;
|
---|
56 |
|
---|
57 | uint8_t *pbArray = (uint8_t *)pvArray;
|
---|
58 | void *pvTmp = alloca(cbElement);
|
---|
59 | size_t cGap = (cElements + 1) / 2;
|
---|
60 | while (cGap > 0)
|
---|
61 | {
|
---|
62 | size_t i;
|
---|
63 | for (i = cGap; i < cElements; i++)
|
---|
64 | {
|
---|
65 | memcpy(pvTmp, &pbArray[i * cbElement], cbElement);
|
---|
66 | size_t j = i;
|
---|
67 | while ( j >= cGap
|
---|
68 | && pfnCmp(&pbArray[(j - cGap) * cbElement], pvTmp, pvUser) > 0)
|
---|
69 | {
|
---|
70 | memmove(&pbArray[j * cbElement], &pbArray[(j - cGap) * cbElement], cbElement);
|
---|
71 | j -= cGap;
|
---|
72 | }
|
---|
73 | memcpy(&pbArray[j * cbElement], pvTmp, cbElement);
|
---|
74 | }
|
---|
75 |
|
---|
76 | /* This does not generate the most optimal gap sequence, but it has the
|
---|
77 | advantage of being simple and avoid floating point. */
|
---|
78 | cGap /= 2;
|
---|
79 | }
|
---|
80 | }
|
---|
81 |
|
---|
82 |
|
---|
83 | RTDECL(void) RTSortApvShell(void **papvArray, size_t cElements, PFNRTSORTCMP pfnCmp, void *pvUser)
|
---|
84 | {
|
---|
85 | /* Anything worth sorting? */
|
---|
86 | if (cElements < 2)
|
---|
87 | return;
|
---|
88 |
|
---|
89 | size_t cGap = (cElements + 1) / 2;
|
---|
90 | while (cGap > 0)
|
---|
91 | {
|
---|
92 | size_t i;
|
---|
93 | for (i = cGap; i < cElements; i++)
|
---|
94 | {
|
---|
95 | void *pvTmp = papvArray[i];
|
---|
96 | size_t j = i;
|
---|
97 | while ( j >= cGap
|
---|
98 | && pfnCmp(papvArray[j - cGap], pvTmp, pvUser) > 0)
|
---|
99 | {
|
---|
100 | papvArray[j] = papvArray[j - cGap];
|
---|
101 | j -= cGap;
|
---|
102 | }
|
---|
103 | papvArray[j] = pvTmp;
|
---|
104 | }
|
---|
105 |
|
---|
106 | /* This does not generate the most optimal gap sequence, but it has the
|
---|
107 | advantage of being simple and avoid floating point. */
|
---|
108 | cGap /= 2;
|
---|
109 | }
|
---|
110 | }
|
---|
111 |
|
---|