1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2003-2025 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING. If not, see
// <https://www.gnu.org/licenses/>.
//
// Code stolen in large part from Python's, listobject.c, which itself had
// no license header. However, thanks to Tim Peters for the parts of the
// code I ripped-off.
//
// As required in the Python license the short description of the changes
// made are
//
// * convert the sorting code in listobject.cc into a generic class,
// replacing PyObject* with the type of the class T.
//
// The Python license is
//
// PSF LICENSE AGREEMENT FOR PYTHON 2.3
// --------------------------------------
//
// 1. This LICENSE AGREEMENT is between the Python Software Foundation
// ("PSF"), and the Individual or Organization ("Licensee") accessing and
// otherwise using Python 2.3 software in source or binary form and its
// associated documentation.
//
// 2. Subject to the terms and conditions of this License Agreement, PSF
// hereby grants Licensee a nonexclusive, royalty-free, world-wide
// license to reproduce, analyze, test, perform and/or display publicly,
// prepare derivative works, distribute, and otherwise use Python 2.3
// alone or in any derivative version, provided, however, that PSF's
// License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
// 2001, 2002, 2003 Python Software Foundation; All Rights Reserved" are
// retained in Python 2.3 alone or in any derivative version prepared by
// Licensee.
//
// 3. In the event Licensee prepares a derivative work that is based on
// or incorporates Python 2.3 or any part thereof, and wants to make
// the derivative work available to others as provided herein, then
// Licensee hereby agrees to include in any such work a brief summary of
// the changes made to Python 2.3.
//
// 4. PSF is making Python 2.3 available to Licensee on an "AS IS"
// basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
// IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
// DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
// FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 2.3 WILL NOT
// INFRINGE ANY THIRD PARTY RIGHTS.
//
// 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
// 2.3 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
// A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.3,
// OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
//
// 6. This License Agreement will automatically terminate upon a material
// breach of its terms and conditions.
//
// 7. Nothing in this License Agreement shall be deemed to create any
// relationship of agency, partnership, or joint venture between PSF and
// Licensee. This License Agreement does not grant permission to use PSF
// trademarks or trade name in a trademark sense to endorse or promote
// products or services of Licensee, or any third party.
//
// 8. By copying, installing or otherwise using Python 2.3, Licensee
// agrees to be bound by the terms and conditions of this License
// Agreement.
//
////////////////////////////////////////////////////////////////////////
#if ! defined (octave_oct_sort_h)
#define octave_oct_sort_h 1
#include "octave-config.h"
#include <functional>
#include "lo-traits.h"
// Enum for type of sort function
enum sortmode { UNSORTED = 0, ASCENDING, DESCENDING };
template <typename T>
class OCTAVE_TEMPLATE_API octave_sort
{
public:
typedef std::function<bool (typename ref_param<T>::type,
typename ref_param<T>::type)> compare_fcn_type;
octave_sort ();
octave_sort (const compare_fcn_type&);
OCTAVE_DISABLE_COPY_MOVE (octave_sort)
~octave_sort ();
void set_compare (const compare_fcn_type& comp) { m_compare = comp; }
void set_compare (sortmode mode);
// Sort an array in-place.
void sort (T *data, octave_idx_type nel);
// Ditto, but also permute the passed indices (may not be valid indices).
void sort (T *data, octave_idx_type *idx, octave_idx_type nel);
// Check whether an array is sorted.
bool issorted (const T *data, octave_idx_type nel);
// Sort a matrix by rows, return a permutation
// vector.
void sort_rows (const T *data, octave_idx_type *idx,
octave_idx_type rows, octave_idx_type cols);
// Determine whether a matrix (as a contiguous block) is sorted by rows.
bool is_sorted_rows (const T *data,
octave_idx_type rows, octave_idx_type cols);
// Do a binary lookup in a sorted array.
octave_idx_type lookup (const T *data, octave_idx_type nel,
const T& value);
// Ditto, but for an array.
void lookup (const T *data, octave_idx_type nel,
const T *values, octave_idx_type nvalues,
octave_idx_type *idx);
// A linear merge of two sorted tables. rev indicates the second table is
// in reverse order.
void lookup_sorted (const T *data, octave_idx_type nel,
const T *values, octave_idx_type nvalues,
octave_idx_type *idx, bool rev = false);
// Rearranges the array so that the elements with indices
// lo..up-1 are in their correct place.
void nth_element (T *data, octave_idx_type nel,
octave_idx_type lo, octave_idx_type up = -1);
static bool ascending_compare (typename ref_param<T>::type,
typename ref_param<T>::type);
static bool descending_compare (typename ref_param<T>::type,
typename ref_param<T>::type);
private:
// The maximum number of entries in a MergeState's pending-runs stack.
// This is enough to sort arrays of size up to about
// 32 * phi ** MAX_MERGE_PENDING
// where phi ~= 1.618. 85 is ridiculously large enough, good for an array
// with 2^64 elements.
static const int MAX_MERGE_PENDING = 85;
// When we get into galloping mode, we stay there until both runs win less
// often than MIN_GALLOP consecutive times. See listsort.txt for more info.
static const int MIN_GALLOP = 7;
// Avoid malloc for small temp arrays.
static const int MERGESTATE_TEMP_SIZE = 1024;
// One MergeState exists on the stack per invocation of mergesort.
// It's just a convenient way to pass state around among the helper
// functions.
//
// DGB: This isn't needed with mergesort in a class, but it doesn't
// slow things up, and it is likely to make my life easier for any
// potential backporting of changes in the Python code.
struct s_slice
{
octave_idx_type m_base, m_len;
};
struct MergeState
{
public:
MergeState ()
: m_min_gallop (), m_a (nullptr), m_ia (nullptr), m_alloced (0), m_n (0)
{ reset (); }
OCTAVE_DISABLE_COPY_MOVE (MergeState)
~MergeState ()
{ delete [] m_a; delete [] m_ia; }
void reset ()
{ m_min_gallop = MIN_GALLOP; m_n = 0; }
void getmem (octave_idx_type need);
void getmemi (octave_idx_type need);
//--------
// This controls when we get *into* galloping mode. It's initialized to
// MIN_GALLOP. merge_lo and merge_hi tend to nudge it higher for random
// data, and lower for highly structured data.
octave_idx_type m_min_gallop;
// 'a' is temp storage to help with merges. It contains room for
// alloced entries.
T *m_a; // may point to temparray below
octave_idx_type *m_ia;
octave_idx_type m_alloced;
// A stack of n pending runs yet to be merged. Run #i starts at address
// base[i] and extends for len[i] elements. It's always true (so long as
// the indices are in bounds) that
//
// pending[i].base + pending[i].len == pending[i+1].base
//
// so we could cut the storage for this, but it's a minor amount,
// and keeping all the info explicit simplifies the code.
octave_idx_type m_n;
struct s_slice m_pending[MAX_MERGE_PENDING];
};
compare_fcn_type m_compare;
MergeState *m_ms;
template <typename Comp>
void binarysort (T *data, octave_idx_type nel,
octave_idx_type start, Comp comp);
template <typename Comp>
void binarysort (T *data, octave_idx_type *idx, octave_idx_type nel,
octave_idx_type start, Comp comp);
template <typename Comp>
octave_idx_type count_run (T *lo, octave_idx_type n, bool& descending,
Comp comp);
template <typename Comp>
octave_idx_type gallop_left (T key, T *a, octave_idx_type n,
octave_idx_type hint, Comp comp);
template <typename Comp>
octave_idx_type gallop_right (T key, T *a, octave_idx_type n,
octave_idx_type hint, Comp comp);
template <typename Comp>
int merge_lo (T *pa, octave_idx_type na,
T *pb, octave_idx_type nb,
Comp comp);
template <typename Comp>
int merge_lo (T *pa, octave_idx_type *ipa, octave_idx_type na,
T *pb, octave_idx_type *ipb, octave_idx_type nb,
Comp comp);
template <typename Comp>
int merge_hi (T *pa, octave_idx_type na,
T *pb, octave_idx_type nb,
Comp comp);
template <typename Comp>
int merge_hi (T *pa, octave_idx_type *ipa, octave_idx_type na,
T *pb, octave_idx_type *ipb, octave_idx_type nb,
Comp comp);
template <typename Comp>
int merge_at (octave_idx_type i, T *data, Comp comp);
template <typename Comp>
int merge_at (octave_idx_type i, T *data, octave_idx_type *idx, Comp comp);
template <typename Comp>
int merge_collapse (T *data, Comp comp);
template <typename Comp>
int merge_collapse (T *data, octave_idx_type *idx, Comp comp);
template <typename Comp>
int merge_force_collapse (T *data, Comp comp);
template <typename Comp>
int merge_force_collapse (T *data, octave_idx_type *idx, Comp comp);
octave_idx_type merge_compute_minrun (octave_idx_type n);
template <typename Comp>
void sort (T *data, octave_idx_type nel, Comp comp);
template <typename Comp>
void sort (T *data, octave_idx_type *idx, octave_idx_type nel, Comp comp);
template <typename Comp>
bool issorted (const T *data, octave_idx_type nel, Comp comp);
template <typename Comp>
void sort_rows (const T *data, octave_idx_type *idx,
octave_idx_type rows, octave_idx_type cols,
Comp comp);
template <typename Comp>
bool is_sorted_rows (const T *data, octave_idx_type rows,
octave_idx_type cols, Comp comp);
template <typename Comp>
octave_idx_type lookup (const T *data, octave_idx_type nel,
const T& value, Comp comp);
template <typename Comp>
void lookup (const T *data, octave_idx_type nel,
const T *values, octave_idx_type nvalues,
octave_idx_type *idx, Comp comp);
template <typename Comp>
void lookup_sorted (const T *data, octave_idx_type nel,
const T *values, octave_idx_type nvalues,
octave_idx_type *idx, bool rev, Comp comp);
template <typename Comp>
void nth_element (T *data, octave_idx_type nel,
octave_idx_type lo, octave_idx_type up,
Comp comp);
};
template <typename T>
class OCTAVE_TEMPLATE_API vec_index
{
public:
T m_vec;
octave_idx_type m_indx;
};
#endif
|