repo stringlengths 1 152 ⌀ | file stringlengths 14 221 | code stringlengths 501 25k | file_length int64 501 25k | avg_line_length float64 20 99.5 | max_line_length int64 21 134 | extension_type stringclasses 2
values |
|---|---|---|---|---|---|---|
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/compressorTextLZEND64bit/sa/ds/globals.c | /* *******************************************************************
globals.c
Ver 1.0 14-oct-02
This file contains the definition of the global variables
which can be defined by the user + some relate procedures
******************************************************************* */
#include <stdio.... | 3,873 | 28.12782 | 80 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/compressorTextLZEND64bit/sa/ds/bwt_aux.c | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
bwt_aux.c
Ver 1.0 3-mar-2004
Functions for computing and transforming various representations
of text and suffix array: t/sa/rank_next/rank_prev/bwt
Copyright (C) 2002 Giovanni Manzini (manzini@mfn.unipmn.it)
This program is free so... | 9,373 | 26.014409 | 77 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/compressorTextLZEND64bit/sa/ds/bwt_aux.h | #define _BW_ALPHA_SIZE 256
typedef unsigned char uchar;
typedef unsigned char uint8;
typedef int int32;
// ---- struct containing the (uncompressed) bwt
typedef struct {
uchar *bwt;
int size;
int eof_pos;
} bwt_data;
// prototypes of bwt procedures defined in bwtlcp.a
void _bw_sa2bwt(uchar *t, int32 n, int3... | 912 | 31.607143 | 78 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/compressorTextLZEND64bit/OLD_Fari/compressor.h | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include "interfazTextCompressorDocs.h"
#define COMPRESSED_REPRESENTATION_EXT_FILE "compRepresentation"
typedef struct {
unsigned int *docBeginnings;
unsigned int numdocs;... | 2,416 | 32.109589 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/compressorTextLZEND64bit/OLD_Fari/compressor.c | #include "compressor.h"
/***************************************************************************/
/** Creates a compressed representation of a collection of text documents **/
/***************************************************************************/
/* Creates the [compressed] representation of a collection ... | 4,656 | 33.753731 | 103 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/compressorTextLZEND64bit/OLD_Fari/bitrankw32int.h | /* bitarray.h
Copyright (C) 2005, Rodrigo Gonzalez, all rights reserved.
New RANK, SELECT, SELECT-NEXT and SPARSE RANK implementations.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foun... | 2,028 | 29.283582 | 88 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/compressorTextLZEND64bit/OLD_Fari/RepairPost.h |
#ifndef REPAIRDECOMPRESSOR
#define REPAIRDECOMPRESSOR
#include <iostream>
#include <cassert>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "bitrankw32int.h"
#include "basic.h"
using namespace std;
class RepairPost {
public:
unsigned char *text;
unsigned long textSize;
unsigned long b... | 1,529 | 21.173913 | 89 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/compressorTextLZEND64bit/OLD_Fari/interfazTextCompressorDocs.h |
/***************************************************************************/
/** Creates a compressed representation of a collection of text documents **/
/***************************************************************************/
/* Creates the [compressed] representation of a collection of text documents
who... | 2,009 | 39.2 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/utils/parseparamsII.c | /***********************************************************************************/
/*** FUNCTIONS USED FOR PARSING PARAMETERS FROM COMMAND LINE ***********************/
/* Three function to variables to manage parameters */
static bool is_delimeter_II(char *delimiters, char c) {
int i=0,len_delimiters=strlen(deli... | 1,529 | 33.772727 | 107 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/utils/scdc.h |
////////////////// Dense Codes ////////////////
#ifndef byte
#define byte unsigned char
#endif
#ifndef uint
#define uint unsigned int
#endif
#ifndef ulong
#define ulong unsigned long
#endif
#include "valstring.h"
void initializeSC_baseTable (uint s);
uint decodeETDC (byte *etdc, register uint pos, uint *num)... | 1,029 | 28.428571 | 132 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/utils/horspool.h | /* Searches using Horspool's algorithm adapted to
search inside a text compressed with End-Tagged Dense Code.
Lightweight Natural Language Text Compression: Information Retrieval 2006
Programmed by Antonio Fari�a.
Author's contact: Antonio Fari�a, Databases Lab, University of
A Coru�a. Campus de Elvi�a s/n. Spain ... | 1,968 | 30.758065 | 93 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/utils/scdc.c | #include "scdc.h"
////////////////// Dense Codes ////////////////
uint SS,CC;
uint TABLABASE[5]; // = {0,128,16512,2113664,270549120};
void initializeSC_baseTable (uint s){
uint c = 256 - s;
TABLABASE[0] = 0;
TABLABASE[1] = s;
TABLABASE[2] = TABLABASE[1] + s * c;
TABLABASE[3] = TABLABASE[2] + s * c*c;
TABLAB... | 2,760 | 26.068627 | 131 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/utils/defValues.h | #ifndef DEFVALUES_INCLUDED
#define DEFVALUES_INCLUDED
//#define FREQ_VECTOR_AVAILABLE //--> COUNT uses wcsa->freqs[] for 1 word and getPositions() for the malloc().
//-->otherwise... getPositions() is needed for count: malloc (wcsa->maxNumOccs);
#define MAX_SIZE_OF_WORD 32768 //255 //size of word
//f... | 1,135 | 27.4 | 113 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/utils/basics.h |
// Basics
#ifndef BASICSINCLUDED
#define BASICSINCLUDED
// Includes
#include <sys/types.h>
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/times.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
// Data types
#ifndef byte
#define byte unsigned c... | 2,381 | 21.903846 | 61 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/utils/iisvsETDCBlock.c | /*************************************************************************************************/
int getPositions (void *index, uchar *pattern, ulong length, uint *ids, uint nids, uint **list, uint *len) {
int retval;
uint i;
twcsa* wcsa = (twcsa *) index;
//intersecting lists
uint *candDocs;
uint numcand... | 5,708 | 25.188073 | 132 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/utils/horspool.c |
#include "horspool.h"
/*------------------------------------------------------------------
Initializes Horspool's d-vector (jumps for each letter)
------------------------------------------------------------------*/
void inicialize_d(byte *code, unsigned int len, byte *d) {
unsigned int c,k;
for (c=0;c<256;c... | 2,029 | 25.363636 | 125 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/utils/errors.c |
/*////////////////
//Error handling//
////////////////*/
char *error_index(int e){
static char err[100];
switch(e) {
case 0: strcpy(err, "No error"); break;
case 1: strcpy(err, "Out of memory"); break;
case 2: strcpy(err, "The text must end with a \\0"); break;
case 5: strcpy(err, "You can't free... | 999 | 36.037037 | 80 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/II_docs_large/src/utils/ii.h |
/** **********************************************************************/
/** Saving/Loading the index to/from disk **/
/** **********************************************************************/
// * loads the source text into memory
int loadTextInMem (byte **text, ulong *size, ch... | 3,036 | 38.960526 | 130 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/interfazTextCompressorDocs.h |
/***************************************************************************/
/** Creates a compressed representation of a collection of text documents **/
/***************************************************************************/
/* Creates the [compressed] representation of a collection of text documents
who... | 2,009 | 39.2 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/buildFacade.h | /* only for getTime() */
#include <sys/time.h>
#include <sys/resource.h>
#include <time.h>
#include "utils/basics.h"
//#include "utils/errors.c"
#include "interface_il.h"
#include "utils/valstring.h"
#include "utils/defValues.h"
#include "utils/fileInfo.h"
#include "utils/hashWords.h"
#include "utils/horspool.h"
#... | 9,155 | 36.991701 | 121 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/interface_il.h |
#define IFERRORIL(error) {{if (error) { fprintf(stderr, "%s\n", error_il(error)); exit(1); }}}
/**********************************************************************************/
/* General interface for using compressed representations of posting lists */
/* Any alternative representation must i... | 3,977 | 33 | 94 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/interface.h |
/* General interface for using the compressed index libraries */
#ifndef uchar
#define uchar unsigned char
#endif
#ifndef uint
#define uint unsigned int
#endif
#ifndef ulong
#define ulong unsigned long
#endif
/* Error management */
/* Returns a string describing the error associated with error number
... | 5,116 | 41.641667 | 121 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/RePairDocCompressor.h | /* RePair.h
* Copyright (C) 2010, Rodrigo Canovas & Miguel A. Martinez-Prieto
* all rights reserved.
*
* RePair for repetitive text collections
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Softwa... | 2,282 | 29.851351 | 120 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/interfazTextCompressorDocs.h | #include "RePairDocCompressor.h"
/***************************************************************************/
/** Creates a compressed representation of a collection of text documents **/
/***************************************************************************/
/* Creates the [compressed] representation of a c... | 2,043 | 38.307692 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/RePair/heap.h |
/*
Repair -- an implementation of Larsson and Moffat's compression and
decompression algorithms.
Copyright (C) 2010-current_year Gonzalo Navarro
This program 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; eith... | 2,927 | 30.483871 | 76 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/RePair/arrayg.h | /*
Repair -- an implementation of Larsson and Moffat's compression and
decompression algorithms.
Copyright (C) 2010-current_year Gonzalo Navarro
This program 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; eithe... | 1,667 | 27.271186 | 75 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/RePair/IRePair.h | /*
Repair -- an implementation of Larsson and Moffat's compression and
decompression algorithms.
Copyright (C) 2010-current_year Gonzalo Navarro
This program 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; eithe... | 2,254 | 25.529412 | 119 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/RePair/basics.h |
/*
Repair -- an implementation of Larsson and Moffat's compression and
decompression algorithms.
Copyright (C) 2010-current_year Gonzalo Navarro
This program 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; eith... | 1,303 | 27.977778 | 75 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/RePair/dictionary.h |
/*
Repair -- an implementation of Larsson and Moffat's compression and
decompression algorithms.
Copyright (C) 2010-current_year Gonzalo Navarro
This program 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; eith... | 1,669 | 26.833333 | 75 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/RePair/records.h |
/*
Repair -- an implementation of Larsson and Moffat's compression and
decompression algorithms.
Copyright (C) 2010-current_year Gonzalo Navarro
This program 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; eith... | 2,331 | 27.439024 | 78 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/RePair/hash.h |
/*
Repair -- an implementation of Larsson and Moffat's compression and
decompression algorithms.
Copyright (C) 2010-current_year Gonzalo Navarro
This program 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; eith... | 2,067 | 28.126761 | 75 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/utils/cppUtils.h |
#ifndef _CPPUTILS
#define _CPPUTILS
#include "libcdsBasics.h"
#include "cppUtils.h"
namespace cds_utils
{
uint transform(const string & s);
template <typename T> void saveValue(ofstream & out, const T val) {
assert(out.good());
out.write((char*)&val,sizeof(T));
}
template <typename... | 1,227 | 22.615385 | 91 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/utils/Array.h | /* array.h
* Copyright (C) 2009, Francisco Claude, all rights reserved.
*
* Array interface
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, ... | 5,817 | 31.870056 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit/utils/libcdsBasics.h | /* basics.h
* Copyright (C) 2005, Rodrigo Gonzalez, all rights reserved.
*
* Some preliminary stuff
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the L... | 8,639 | 36.402597 | 103 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit.fari.nocompress/compressor.h | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include "interfazTextCompressorDocs.h"
#define COMPRESSED_REPRESENTATION_EXT_FILE "compRepresentation"
typedef struct {
unsigned int *docBeginnings;
unsigned int numdocs;... | 2,416 | 32.109589 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit.fari.nocompress/compressor.c | #include "compressor.h"
/***************************************************************************/
/** Creates a compressed representation of a collection of text documents **/
/***************************************************************************/
/* Creates the [compressed] representation of a collection ... | 4,656 | 33.753731 | 103 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit.fari.nocompress/bitrankw32int.h | /* bitarray.h
Copyright (C) 2005, Rodrigo Gonzalez, all rights reserved.
New RANK, SELECT, SELECT-NEXT and SPARSE RANK implementations.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foun... | 2,028 | 29.283582 | 88 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit.fari.nocompress/RepairPost.h |
#ifndef REPAIRDECOMPRESSOR
#define REPAIRDECOMPRESSOR
#include <iostream>
#include <cassert>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "bitrankw32int.h"
#include "basic.h"
using namespace std;
class RepairPost {
public:
unsigned char *text;
unsigned long textSize;
unsigned long b... | 1,529 | 21.173913 | 89 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextREPAIR64bit.fari.nocompress/interfazTextCompressorDocs.h |
/***************************************************************************/
/** Creates a compressed representation of a collection of text documents **/
/***************************************************************************/
/* Creates the [compressed] representation of a collection of text documents
who... | 2,009 | 39.2 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextPlain64bit/compressor.h | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include "interfazTextCompressorDocs.h"
#define COMPRESSED_REPRESENTATION_EXT_FILE "compRepresentation"
typedef struct {
unsigned int *docBeginnings;
unsigned int numdocs;... | 2,416 | 32.109589 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextPlain64bit/compressor.c | #include "compressor.h"
/***************************************************************************/
/** Creates a compressed representation of a collection of text documents **/
/***************************************************************************/
/* Creates the [compressed] representation of a collection ... | 5,847 | 33.19883 | 103 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextPlain64bit/bitrankw32int.h | /* bitarray.h
Copyright (C) 2005, Rodrigo Gonzalez, all rights reserved.
New RANK, SELECT, SELECT-NEXT and SPARSE RANK implementations.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foun... | 2,028 | 29.283582 | 88 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextPlain64bit/RepairPost.h |
#ifndef REPAIRDECOMPRESSOR
#define REPAIRDECOMPRESSOR
#include <iostream>
#include <cassert>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "bitrankw32int.h"
#include "basic.h"
using namespace std;
class RepairPost {
public:
unsigned char *text;
unsigned long textSize;
unsigned long b... | 1,529 | 21.173913 | 89 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextPlain64bit/interfazTextCompressorDocs.h |
/***************************************************************************/
/** Creates a compressed representation of a collection of text documents **/
/***************************************************************************/
/* Creates the [compressed] representation of a collection of text documents
who... | 2,009 | 39.2 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextNull64bit/compressor.h | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include "interfazTextCompressorDocs.h"
typedef struct {
unsigned int length;
} trep;
/***************************************************************************/
/** C... | 2,277 | 32.014493 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextNull64bit/compressor.c | #include "compressor.h"
/***************************************************************************/
/** Creates a compressed representation of a collection of text documents **/
/***************************************************************************/
/* Creates the [compressed] representation of a collection ... | 2,541 | 28.905882 | 103 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextNull64bit/interfazTextCompressorDocs.h |
/***************************************************************************/
/** Creates a compressed representation of a collection of text documents **/
/***************************************************************************/
/* Creates the [compressed] representation of a collection of text documents
who... | 2,009 | 39.2 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/utils.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "utils.h"
/*construction sa*/
/*#include "interface.h"*/
#include "divsufsort.h"
#include "lfs.h"
#include <sys/time.h>
#include <time.h>
struct timeval tv1,tv2;
void startTime(){
gettimeofday(&tv1,NULL);
}
unsigned long end... | 10,336 | 29.402941 | 111 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/treelist.c | #include <stdlib.h>
#include <stdio.h>
#include "treelist.h"
TreeList* newTreeList(){
TreeList* l;
l = (TreeList*)malloc(sizeof(TreeList));
if(l){
l->prev=NULL;
l->next=NULL;
l->left=NULL;
l->right=NULL;
l->val=-1;
}
return l;
}
TreeList* findValue(TreeList* l,int val){
... | 2,390 | 20.93578 | 71 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/compressor.h | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include "interfazTextCompressorDocs.h"
#define DELTA_SAMPLING (16)
typedef struct{
void* extractor;
void* doc_array;
unsigned int docs;
} lzdoc;
/*************... | 2,346 | 32.528571 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_bitsequence_builder_brw32.h | /* static_bitsequence_builder_brw32.h
* Copyright (C) 2008, Francisco Claude, all rights reserved.
*
* static_bitsequence_builder_brw32 definition
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Soft... | 1,499 | 35.585366 | 77 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/lfs.h | /*
* lfs.h for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitat... | 1,689 | 28.649123 | 68 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_bitsequence_brw32.h | /* static_bitsequence_brw32.h
Copyright (C) 2005, Rodrigo Gonzalez, all rights reserved.
New RANK, SELECT, SELECT-NEXT and SPARSE RANK implementations.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Fr... | 2,716 | 33.392405 | 88 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/extractor77.h | #ifndef __EXTRACTOR77_H__
#define __EXTRACTOR77_H__
#include "extractor.h"
class Extractor77: public Extractor{
public:
Extractor77(char* filename, unsigned int sampling);
~Extractor77();
virtual unsigned char* extract(unsigned int start, unsigned int end);
protected:
void char... | 577 | 33 | 131 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZend.nuevo.h | #ifndef __LZEND2_H__
#define __LZEND2_H__
#include "LZ77.h"
#include "RMQ.h"
#include "static_permutation.h"
class LZEnd2: public LZparser{
public:
LZEnd2(char* filename);
virtual ~LZEnd2();
/* generates the LZ parsing of filename and returns the number of phrases
* creates 3 diff... | 1,490 | 32.886364 | 106 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/RMQ_succinct.h | #ifndef _RMQ_succinct_hpp_
#define _RMQ_succinct_hpp_
//#define MEM_COUNT
#include <math.h>
typedef int DT; // use long for 64bit-version (but take care of fast log!)
typedef unsigned int DTidx; // for indexing in arrays
#include <stdlib.h>
#include <limits.h>
#include <iostream>
using namespace... | 2,405 | 21.277778 | 90 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/utils.h | #ifndef __UTILS_H__
#define __UTILS_H__
void startTime();
unsigned long endTime();
unsigned long endTime2();
unsigned char* readText(char* filename,unsigned int* length);
int saveText(unsigned char* text,int length,char* filename);
unsigned int* invertSA(unsigned int* sa,int len);
unsigned int* readArray(char* filenam... | 796 | 40.947368 | 90 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/interfazTextCompressorDocs.h |
/***************************************************************************/
/** Creates a compressed representation of a collection of text documents **/
/***************************************************************************/
/* Creates the [compressed] representation of a collection of text documents
who... | 2,009 | 39.2 | 102 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/deltacodes.h | class DeltaCodes{
public:
DeltaCodes(unsigned int* array, unsigned int n, unsigned int sampling);
virtual ~DeltaCodes();
unsigned int select(unsigned int total);
unsigned int rank(unsigned int pos);
unsigned int access(unsigned int pos);
unsigned int rank_select(unsig... | 810 | 37.619048 | 88 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/perm.h | /* perm.h
* Copyright (C) 2005, Diego Arroyuelo, all rights reserved.
*
* Permutation
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at... | 2,191 | 23.629213 | 93 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_permutation_mrrr.h | /* static_permutation_mrrr.h
* Copyright (C) 2008, Francisco Claude, all rights reserved.
*
* Permutation
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of... | 1,826 | 34.134615 | 97 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZend (copia).h | #ifndef __LZend_H__
#define __LZend_H__
#include "LZ77.h"
#include "RMQ.h"
class LZend: public LZparser{
public:
LZend(char* filename);
virtual ~LZend();
/* generates the LZ parsing of filename and returns the number of phrases
* creates 3 different files (arrays):
* f... | 1,080 | 29.027778 | 94 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/extractor.h | #ifndef __EXTRACTOR_H__
#define __EXTRACTOR_H__
//#include "basics.h"
//#include "bitmap.h"
#include "deltacodes.h"
class Extractor{
public:
Extractor(char* filename, unsigned int sampling);//sampling for deltacoding
virtual ~Extractor();
virtual unsigned char* extract(unsigned int start, ... | 836 | 26 | 83 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_bitsequence_builder.h | /* static_bitsequence_builder.h
* Copyright (C) 2008, Francisco Claude, all rights reserved.
*
* static_bitsequence_builder definition
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundat... | 1,401 | 36.891892 | 79 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/basics.h | /* basics.h
* Copyright (C) 2005, Rodrigo Gonzalez, all rights reserved.
*
* Some preliminary stuff
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the L... | 7,907 | 31.146341 | 97 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_bitsequence.h | /* static_bitsequence.h
* Copyright (C) 2008, Francisco Claude, all rights reserved.
*
* static_bitsequence definition
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* v... | 2,716 | 27.6 | 90 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/interface.h | #ifdef __cplusplus
extern "C" {
#endif
/* General interface for using the compressed index libraries */
#ifndef uchar
#define uchar unsigned char
#endif
#ifndef uint
#define uint unsigned int
#endif
#ifndef ulong
#define ulong unsigned long
#endif
/* Error management */
/* Returns a string describing the er... | 3,639 | 34.339806 | 79 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/divsufsort.h | /*
* divsufsort.h for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without ... | 5,442 | 29.071823 | 88 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/static_permutation.h | /* static_permutation.h
* Copyright (C) 2008, Francisco Claude, all rights reserved.
*
* Permutation
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the ... | 1,599 | 31 | 77 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZparser.h | #ifndef __LZPARSER_H__
#define __LZPARSER_H__
#include <cstdio>
class LZparser{
public:
LZparser(char* filename);
virtual ~LZparser();
/* generates the LZ parsing of filename and returns the number of phrases
* creates 3 different files (arrays):
* filename.start (4*le... | 1,103 | 29.666667 | 103 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZ77_2.h | #ifndef __LZ77_2_H__
#define __LZ77_2_H__
#include "LZparser.h"
#include "RMQ.h"
class LZ77_2: public LZparser{
public:
LZ77_2(char* filename);
virtual ~LZ77_2();
/* generates the LZ parsing of filename and returns the number of phrases
* creates 3 different files (arrays):
... | 960 | 34.592593 | 107 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZend.h | #ifndef __LZend_H__
#define __LZend_H__
#include "LZ77.h"
#include "RMQ.h"
#include "static_permutation.h"
class LZend: public LZparser{
public:
LZend(char* filename);
virtual ~LZend();
/* generates the LZ parsing of filename and returns the number of phrases
* creates 3 different... | 1,247 | 30.2 | 94 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/LZ77.h | #ifndef __LZ77_H__
#define __LZ77_H__
#include "LZparser.h"
#include "RMQ.h"
class LZ77: public LZparser{
public:
LZ77(char* filename);
virtual ~LZ77();
/* generates the LZ parsing of filename and returns the number of phrases
* creates 3 different files (arrays):
* fi... | 950 | 34.222222 | 107 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/examples/mksary.c | /*
* mksary.c for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limi... | 5,309 | 26.371134 | 83 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/examples/unbwt.c | /*
* unbwt.c for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limit... | 5,667 | 26.25 | 79 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/examples/suftest.c | /*
* suftest.c for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without lim... | 4,506 | 26.315152 | 83 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/examples/sasearch.c | /*
* sasearch.c for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without li... | 4,424 | 25.656627 | 77 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/examples/bwt.c | /*
* bwt.c for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitat... | 6,248 | 27.276018 | 86 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/lib/utils.c | /*
* utils.c for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limit... | 9,862 | 24.819372 | 83 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/lib/sssort.c | /*
* sssort.c for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limi... | 24,117 | 28.556373 | 89 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/lib/trsort.c | /*
* trsort.c for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limi... | 17,794 | 29.315162 | 88 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/lib/divsufsort.c | /*
* divsufsort.c for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without ... | 11,728 | 28.39599 | 83 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/include/config.h | /* include/config.h. Generated from config.h.in by configure. */
/* include/config.h.in. Generated from configure.ac by autoheader. */
/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* Define to 1 if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define to 1 if ... | 3,745 | 26.955224 | 78 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/include/lfs.h | /*
* lfs.h for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitat... | 1,689 | 28.649123 | 68 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/include/divsufsort.h | /*
* divsufsort.h for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without ... | 5,442 | 29.071823 | 88 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/libdivsufsort-2.0.1/include/divsufsort_private.h | /*
* divsufsort_private.h for libdivsufsort
* Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including ... | 5,672 | 26.274038 | 75 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/SAu.c | /* SAu.c
Copyright (C) 2005, Rodrigo Gonzalez, all rights reserved.
This file contains an implementation of Suffix Array in a uncompressed
form.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free S... | 12,316 | 27.185355 | 130 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/helped.c | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
helped.c
these routines sort a group of strings which have a common prefix
using induced sorting (if possible) or a deep-sort routine
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#include <stdlib.h>
#include <string.h... | 21,838 | 38.137993 | 91 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/suftest2.c | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
suftest2.c
Written by G. Manzini using the suftest.c code
by N. Jesper Larsson (Copyright N. Jesper Larsson 1999)
Program to test a suffix sorting function. Reads a sequence of bytes from
a file and calls the deep/shallo... | 14,557 | 29.266112 | 79 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/shallow.c | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
shallow.c
This is the multikey quicksort from bentley-sedgewick modified
so that it stops recursion when depth reaches Shallow_limit
(that is when two or more suffixes have Shallow_limit chars in common).
>>>>>>>>>>>>>>>>>>>>>>>>>>>>... | 17,681 | 30.295575 | 80 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/blind2.c | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
string sorting routine based on a blind tree
26-jun-01 ver 1.0
03-jul-01 ver 1.1 (get rid of node header)
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "common.h"
/* ========... | 12,408 | 26.698661 | 78 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/lcp_aux.c | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
lcp_aux.c
Ver 1.0 28-apr-2004
Functions for lightweight computation of the LCP array.
Copyright (C) 2004 Giovanni Manzini (manzini@mfn.unipmn.it)
This program is free software; you can redistribute it and/or modify
it under the term... | 9,930 | 33.96831 | 77 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/deep2.c | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
deep.c
"deep" sorting routines
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include "common.h"
/* ------ external global variables ------- */
extern UChar *Text; ... | 6,736 | 26.72428 | 78 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/unbwt.c | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
unbwt.c
Ver 1.0 6-oct-02
compute the inverse bwt.
The input file must be in the following format:
(bwt) N bytes + (eof position, LSB first) 4 bytes
The procedure currently uses 5N bytes.
Copyright (C) 2002 Giovanni Manzini ... | 8,673 | 27.162338 | 79 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/ds.c | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
ds.c
deep-shallow sorting algorithm. these routines are taken mainly by
Seward's d_copyEQ_u12.c
Buckets are sorted one at a time; when bucket Y is completely sorted
(except for YY) "pointer copying" is used to sort small buckets of ... | 9,364 | 30.32107 | 81 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/testlcp.c | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
testlcp.c
Ver 1.0 9-dec-03
Ver 1.1 28-apr-04 (uses bwt_aux)
Ver 1.2 28-may-04 (uses lcp_aux)
Test algorithms for computing the lcp array.
Copyright (C) 2004 Giovanni Manzini (manzini@mfn.unipmn.it)
This program is fr... | 9,432 | 29.041401 | 79 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/bwt.c | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
bwt.c
Ver 1.0 14-oct-02
compute the bwt using the ds_ssort routines
The output file has the following format:
(bwt) N bytes + (eof position, LSB first) 4 bytes
Copyright (C) 2002 Giovanni Manzini (manzini@mfn.unipmn.it)
This ... | 7,068 | 29.339056 | 79 | c |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/lcp_aux.h |
// prototypes of the lcp construction procedures defined in
// bwtlcp.a (source files lcp_aux.c lcp5_aux.c)
// before including this file you must first include bwt_aux.h
int *_lcp_sa2lcp_13n(uint8 *t, int n, int *sa);
int *_lcp_sa2lcp_9125n(uint8 *t, int n, int *sa);
int *_lcp_sa2lcp_9n(uint8 *t, int n, int *sa, int... | 512 | 35.642857 | 62 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/common.h | /* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
global defintion for the ds suffix-sort algorithm
Giovanni Manzini
2-apr 2001
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* ----------- use assertion if DEBUG!=0 ------------- */
#ifndef DEBUG
#define DEBUG 1 /* set DEBUG to 0 to remove ... | 1,434 | 23.322034 | 76 | h |
uiHRDC | uiHRDC-master/uiHRDC/indexes/NOPOS/EliasFano.OV14/II_docs.EliasFano_formato.ver.leeme/src/compressorTextLZEND64bit/sa/ds/globals.c | /* *******************************************************************
globals.c
Ver 1.0 14-oct-02
This file contains the definition of the global variables
which can be defined by the user + some relate procedures
******************************************************************* */
#include <stdio.... | 3,873 | 28.12782 | 80 | c |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.