forked from xxsds/DYNAMIC
-
Notifications
You must be signed in to change notification settings - Fork 3
/
rle_lz77_v2.cpp
88 lines (61 loc) · 2.12 KB
/
rle_lz77_v2.cpp
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
// Copyright (c) 2017, Nicola Prezza. All rights reserved.
// Use of this source code is governed
// by a MIT license that can be found in the LICENSE file.
/*
* rle_lz77_v2.cpp
*
* Compute the LZ77 parsing in run-compressed space
* using a dynamic run-length encoded BWT with
* a sparse SA sampling (1 sample per LZ factor).
*
* Space is O(R log n + z log n) bits. The constants hidden in the
* big-O notation are much smaller than in rle_lz77_v1.hpp:
* in this algorithm, space usage is around (2R + 3z) log n bits
*
* Type of input text here is uchar
*
*
*/
#include <chrono>
#include "dynamic/dynamic.hpp"
#include "dynamic/algorithms/rle_lz77_v2.hpp"
using namespace std;
using namespace dyn;
int main(int argc,char** argv) {
using std::chrono::high_resolution_clock;
using std::chrono::duration_cast;
using std::chrono::duration;
if(argc!=3){
cout << "Build LZ77 using a run-length encoded BWT with sparse SA sampling (1 sample per LZ factor)." << endl << endl;
cout << "Usage: rle_lz7_v1 <input_file> <output_file> " << endl;
cout << " input_file: file to be parsed" << endl;
cout << " output_file: LZ77 triples <start,length,char> will be saved in text format in this file" << endl;
exit(0);
}
using lz77_t = rle_lz77_v2;
auto t1 = high_resolution_clock::now();
lz77_t lz77;
string in(argv[1]);
string out(argv[2]);
{
cout << "Detecting alphabet ... " << flush;
std::ifstream ifs(in);
lz77 = lz77_t(ifs);
ifs.close();
cout << "done." << endl;
}
std::ifstream ifs(in);
std::ofstream os(out);
lz77.parse(ifs,os,true);
ifs.close();
os.close();
auto t2 = high_resolution_clock::now();
uint64_t sec = std::chrono::duration_cast<std::chrono::seconds>(t2 - t1).count();
ulint bitsize = lz77.bit_size();
cout << endl << "done" << endl;
cout << " Total time: " << (double)sec << " seconds" << endl;
cout << " Size of the structures (bits): " << bitsize << endl;
cout << " Size of the structures (Bytes): " << bitsize/8 << endl;
cout << " Size of the structures (KB): " << (bitsize/8)/1024 << endl;
cout << " Size of the structures (MB): " << ((bitsize/8)/1024)/1024 << endl;
}