This file is indexed.

/usr/include/colib/quicksort.h is in libiulib-dev 0.4+is+0.3-3ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
// -*- C++ -*-

// Copyright 2006 Deutsches Forschungszentrum fuer Kuenstliche Intelligenz 
// or its licensors, as applicable.
// Copyright 1995-2005 Thomas M. Breuel
// 
// You may not use this file except under the terms of the accompanying license.
// 
// Licensed under the Apache License, Version 2.0 (the "License"); you
// may not use this file except in compliance with the License. You may
// obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
// 
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// 
// Project: iulib -- image understanding library
// File: quicksort.h
// Purpose: sorting of narrays
// Responsible: tmb
// Reviewer: 
// Primary Repository: 
// Web Sites: www.iupr.org, www.dfki.de

/// \file quicksort.h
/// \brief Sorting of narrays

#ifndef h_quicksort__
#define h_quicksort__

#include "colib/checks.h"
#include "colib/narray.h"

namespace colib {

    namespace {
        template <class T>
        void qswap_(T &a,T &b) {
            T temp = a;
            a = b;
            b = temp;
        }
    }

    template <class T>
    void quicksort(narray<int> &index,narray<T> &values,int start,int end) {
        if(start>=end-1) return;

        // pick a pivot
        // NB: it's OK for this to be a reference pointing into values
        // since we aren't actually moving the elements of values[] around
        
        T &pivot = values[index[(start+end-1)/2]];

        // first, split into two parts: less than the pivot
        // and greater-or-equal

        int lo = start;
        int hi = end;
        for(;;) {
            while(lo<hi && values[index[lo]]<pivot) lo++;
            while(lo<hi && values[index[hi-1]]>=pivot) hi--;
            if(lo==hi || lo==hi-1) break;
            qswap_(index[lo],index[hi-1]);
            lo++;
            hi--;
        }
        int split1 = lo;
        
        // now split into two parts: equal to the pivot
        // and strictly greater.

        hi = end;
        for(;;) {
            while(lo<hi && values[index[lo]]==pivot) lo++;
            while(lo<hi && values[index[hi-1]]>pivot) hi--;
            if(lo==hi || lo==hi-1) break;
            qswap_(index[lo],index[hi-1]);
            lo++;
            hi--;
        }
        int split2 = lo;
        
#ifdef TEST
        for(int i=start;i<split1;i++) ASSERT(values[index[i]]<pivot);
        for(int i=split1;i<split2;i++) ASSERT(values[index[i]]==pivot);
        for(int i=split2;i<end;i++) ASSERT(values[index[i]]>pivot);
#endif

        quicksort(index,values,start,split1);
        quicksort(index,values,split2,end);
    }

    /// Quicksort an array, generating a permutation of the indexes.

    template <class T>
    void quicksort(narray<int> &index,narray<T> &values) {
        index.resize(values.length());
        for(int i=0;i<values.length();i++) index[i] = i;
        quicksort(index,values,0,index.length());
    }

    /// Permute the elements of an array given a permutation.

    template <class T>
    void permute(narray<T> &data,narray<int> &permutation) {
        CHECK_ARG(samedims(data,permutation));
        narray<bool> finished(data.length());
        fill(finished,false);
        for(int start=0;start<finished.length();start++) {
            if(finished(start)) continue;
            int index = start;
            T value = data(index);
            for(;;) {
                int next = permutation(index);
                if(next==start) break;
                data(index) = data(next);
                index = next;
                CHECK_ARG(!finished(index) && "not a permutation");
                finished(index) = true;
                index = next;
            }
            data(index) = value;
            finished(index) = true;
        }
    }

    /// Select elements with the given indexes.

    template <class T>
    void pick(narray<T> &data,narray<T> &source,narray<int> &indexes) {
        data.clear();
        for(int i=0;i<indexes.length();i++)
            data.push(source(indexes(i)));
    }

    /// Permute the elements of an array given a permutation,
    /// Permute the elements of an array given a permutation,
    /// using the overloaded move function to move values around.

    template <class T>
    void permute_move(narray<T> &data,narray<int> &permutation) {
        CHECK_ARG(samedims(data,permutation));
        narray<bool> finished(data.length());
        fill(finished,false);
        for(int start=0;start<finished.length();start++) {
            if(finished(start)) continue;
            int index = start;
            T value;
            move(value,data(index));
            for(;;) {
                int next = permutation(index);
                if(next==start) break;
                move(data(index),data(next));
                index = next;
                CHECK_ARG(!finished(index) && "not a permutation");
                finished(index) = true;
                index = next;
            }
            move(data(index),value);
            finished(index) = true;
        }
    }

    /// Quicksort the elements of an array in place.
    /// (Uses an intermediate permutation, so elements are moved around minimally.))

    template <class T>
    void quicksort_perm(narray<T> &data) {
        narray<int> permutation;
        quicksort(permutation,data);
        permute(data,permutation);
    }

    template <class T>
    void quicksort(narray<T> &values,int start,int end) {
        if(start>=end-1) return;

        // pick a pivot
        // NB: this cannot be a reference to the value (since we're moving values around)
        
        T pivot = values[(start+end-1)/2];

        // first, split into two parts: less than the pivot
        // and greater-or-equal

        int lo = start;
        int hi = end;
        for(;;) {
            while(lo<hi && values[lo]<pivot) lo++;
            while(lo<hi && values[hi-1]>=pivot) hi--;
            if(lo==hi || lo==hi-1) break;
            qswap_(values[lo],values[hi-1]);
            lo++;
            hi--;
        }
        int split1 = lo;
        
        // now split into two parts: equal to the pivot
        // and strictly greater.

        hi = end;
        for(;;) {
            while(lo<hi && values[lo]==pivot) lo++;
            while(lo<hi && values[hi-1]>pivot) hi--;
            if(lo==hi || lo==hi-1) break;
            qswap_(values[lo],values[hi-1]);
            lo++;
            hi--;
        }
        int split2 = lo;
        
#ifdef TEST
        for(int i=start;i<split1;i++) ASSERT(values[i]<pivot);
        for(int i=split1;i<split2;i++) ASSERT(values[i]==pivot);
        for(int i=split2;i<end;i++) ASSERT(values[i]>pivot);
#endif  

        quicksort(values,start,split1);
        quicksort(values,split2,end);
    }

    /// Quicksort the elements of an array in place.

    template <class T>
    void quicksort(narray<T> &values) {
        quicksort(values,0,values.length());
    }

    /// Compute fractiles.

    template <class T>
    T fractile(narray<T> &a,double f) {
        floatarray temp;
        copy(temp,a);
        temp.reshape(temp.length1d());
        quicksort(temp);
        return temp[int(f*temp.length())];
    }
}

#endif