-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbs.cpp
148 lines (138 loc) · 3.44 KB
/
bs.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
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
/*********************************************************
File Name:bs.cpp
Author: Abby Cin
Mail: [email protected]
Created Time: Tue 27 Sep 2016 04:30:51 PM CST
**********************************************************/
#include <iostream>
#include <cstring>
#include <algorithm>
#include <chrono>
#define failure(func, line) \
do { \
fprintf(stderr, "%s : %d\t", func, line); \
perror(func); \
std::terminate(); \
} \
while (0)
class Bigdata {
public:
Bigdata(long limit, const std::string &input, const std::string &output)
: slot_(limit), in_(input), out_(output), count_(0)
{
}
void sort()
{
split_files();
merge_files();
do_clean();
}
private:
const long slot_;
std::string in_, out_;
long count_;
FILE *get_tmpfd()
{
char name[50];
sprintf(name, "tmp_%ld", count_++);
FILE *tmpfd = fopen(name, "w");
if (tmpfd == nullptr)
failure(__func__, __LINE__);
return tmpfd;
}
void split_files()
{
FILE *fd = fopen(in_.c_str(), "r");
if (fd == nullptr)
failure(__func__, __LINE__);
long n = 0;
FILE *tmpfd = get_tmpfd();
long local_count = 0;
long *numbers_ = new long[slot_];
while (fscanf(fd, "%ld\n", &n) != EOF) {
numbers_[local_count++] = n;
if (local_count == slot_) {
local_count = 0;
std::sort(numbers_, numbers_ + slot_);
for (long i = 0; i < slot_; ++i)
fprintf(tmpfd, "%ld\n", numbers_[i]);
memset(numbers_, 0, sizeof(long) * slot_);
fclose(tmpfd);
tmpfd = get_tmpfd();
}
}
if (local_count != 0) {
std::sort(numbers_, numbers_ + slot_);
for (long i = 0; i < slot_; ++i)
fprintf(tmpfd, "%ld\n", numbers_[i]);
}
delete[] numbers_;
fclose(tmpfd);
fclose(fd);
}
void merge_files()
{
FILE *fd = fopen(out_.c_str(), "w");
if (fd == nullptr)
failure(__func__, __LINE__);
std::vector<FILE *> fds(count_);
std::vector<long> data(count_);
std::vector<bool> done(count_);
char name[50];
for (long i = 0; i < count_; ++i) {
done[i] = false;
data[i] = 0;
sprintf(name, "tmp_%ld", i);
fds[i] = fopen(name, "r");
if (fscanf(fds[i], "%ld\n", &data[i]) == EOF) {
fclose(fds[i]);
remove(name);
done[i] = true;
}
}
while (true) {
long j = 0;
while (j < count_ && done[j])
++j;
if (j >= count_)
break;
long minimum = data[j];
for (long i = j + 1; i < count_; ++i) {
if (!done[i] && minimum > data[i]) {
minimum = data[i];
j = i;
}
}
fprintf(fd, "%ld\n", minimum);
if (fscanf(fds[j], "%ld\n", &data[j]) == EOF) {
fclose(fds[j]);
sprintf(name, "tmp_%ld", j);
remove(name);
done[j] = true;
}
}
fclose(fd);
}
void do_clean()
{
char name[50];
for (long i = 0; i < count_; ++i) {
sprintf(name, "tmp_%ld", i);
remove(name);
}
}
};
int main(int argc, char *argv[])
{
if (argc != 4) {
fprintf(stderr, "%s num_per_file input output\n", argv[0]);
return 1;
}
auto beg = std::chrono::steady_clock::now();
Bigdata bigdata(std::stol(argv[1]), argv[2], argv[3]);
bigdata.sort();
auto end = std::chrono::steady_clock::now();
auto dur = std::chrono::duration_cast<std::chrono::milliseconds>(end -
beg);
std::cout << dur.count() << "ms\n";
}