This file is indexed.

/usr/include/freefem++/HeapSort.hpp is in libfreefem++-dev 3.47+dfsg1-2build1.

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
template<class T>
void  HeapSort(T *c,long n)
{
  long l,j,r,i;
  T crit;
  c--; // on decale de 1 pour que le tableau commence a 1
  if( n <= 1) return;
  l = n/2 + 1;
  r = n;
  while (1) { // label 2
    if(l <= 1 ) { // label 20
      crit = c[r];
      c[r--] = c[1];
    if ( r == 1 ) { c[1]=crit; return;}
    } else  crit = c[--l]; 
    j=l;
    while (1) {// label 4
      i=j;
      j=2*j;
      if  (j>r) {c[i]=crit;break;} // L8 -> G2
      if ((j<r) && (c[j] < c[j+1])) j++; // L5
      if (crit < c[j]) c[i]=c[j]; // L6+1 G4
      else {c[i]=crit;break;} //L8 -> G2
    }
  }
}

template<class K,class T>
void  HeapSort(K *k,T *t,long n)
{
    long l,j,r,i;
    K kk;
    T tt;
    k--;t--; // on decale de 1 pour que les tableau commence a 1
    if( n <= 1) return;
    l = n/2 + 1;
    r = n;
    while (1) { // label 2
	if(l <= 1 ) { // label 20
	    kk = k[r];
	    tt = t[r];
	    t[r]=t[1];
	    k[r--] = k[1];	    
	    if ( r == 1 ) { k[1]=kk;t[1]=tt; return;}
	} else  {kk = k[--l];tt=t[l]; }
	j=l;
	while (1) {// label 4
	    i=j;
	    j=2*j;
	    if  (j>r) {k[i]=kk;t[i]=tt;break;} // L8 -> G2
	    if ((j<r) && (k[j] < k[j+1])) j++; // L5
	    if (kk < k[j]) {k[i]=k[j];t[i]=t[j];} // L6+1 G4
	    else {k[i]=kk;t[i]=tt;break;} //L8 -> G2
	}
    }
}