VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/sort/shellsort.cpp

Last change on this file was 109139, checked in by vboxsync, 2 weeks ago

VBoxCpuReport,RTSSortShell: M3 Max adjustments; shutting up assertion. jiraref:VBP-1653

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.7 KB
Line 
1/* $Id: shellsort.cpp 109139 2025-05-02 20:25:17Z 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.215389.xyz.
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
49RTDECL(void) RTSortShell(void *pvArray, size_t cElements, size_t cbElement, PFNRTSORTCMP pfnCmp, void *pvUser)
50{
51#ifdef IN_RING3
52 Assert(cbElement <= _32K);
53#else
54 Assert(cbElement <= 128);
55#endif
56
57 /* Anything worth sorting? */
58 if (cElements < 2)
59 return;
60
61 uint8_t *pbArray = (uint8_t *)pvArray;
62 void *pvTmp = alloca(cbElement);
63 size_t cGap = (cElements + 1) / 2;
64 while (cGap > 0)
65 {
66 size_t i;
67 for (i = cGap; i < cElements; i++)
68 {
69 memcpy(pvTmp, &pbArray[i * cbElement], cbElement);
70 size_t j = i;
71 while ( j >= cGap
72 && pfnCmp(&pbArray[(j - cGap) * cbElement], pvTmp, pvUser) > 0)
73 {
74 memmove(&pbArray[j * cbElement], &pbArray[(j - cGap) * cbElement], cbElement);
75 j -= cGap;
76 }
77 memcpy(&pbArray[j * cbElement], pvTmp, cbElement);
78 }
79
80 /* This does not generate the most optimal gap sequence, but it has the
81 advantage of being simple and avoid floating point. */
82 cGap /= 2;
83 }
84}
85
86
87RTDECL(void) RTSortApvShell(void **papvArray, size_t cElements, PFNRTSORTCMP pfnCmp, void *pvUser)
88{
89 /* Anything worth sorting? */
90 if (cElements < 2)
91 return;
92
93 size_t cGap = (cElements + 1) / 2;
94 while (cGap > 0)
95 {
96 size_t i;
97 for (i = cGap; i < cElements; i++)
98 {
99 void *pvTmp = papvArray[i];
100 size_t j = i;
101 while ( j >= cGap
102 && pfnCmp(papvArray[j - cGap], pvTmp, pvUser) > 0)
103 {
104 papvArray[j] = papvArray[j - cGap];
105 j -= cGap;
106 }
107 papvArray[j] = pvTmp;
108 }
109
110 /* This does not generate the most optimal gap sequence, but it has the
111 advantage of being simple and avoid floating point. */
112 cGap /= 2;
113 }
114}
115
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette