forked from Mooophy/CLRS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYoung_tableau.h
256 lines (219 loc) · 4.64 KB
/
Young_tableau.h
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
245
246
247
248
249
250
251
252
253
254
255
256
/***************************************************************************
* @file Young_tableau.h
* @author Alan.W
* @date 19 May 2014
* @remark This code is for Introduction to Algorithms 3rd
* @note code style : STL,BOOSTs
***************************************************************************/
//! for ch6 problem 6.3
#ifndef YOUNG_TABLEAU_H
#define YOUNG_TABLEAU_H
#include <vector>
#include <iterator>
#include <iostream>
#include <algorithm>
#include <assert.h>
namespace ch6{
/**
* @brief forward declarations
*/
template<typename T>
class Young_tableau;
template<typename T>
std::ostream& operator <<(std::ostream& os, const Young_tableau<T>& rhs);
/**
* @brief The Young_tableau class
*
* @note Ascending Order
*/
template<typename T>
class Young_tableau
{
friend std::ostream& operator<< <T>(std::ostream& os, const Young_tableau<T>& rhs);
public:
using ValueType = T;
using Iter = typename std::vector<ValueType>::iterator;
using SizeType = std::size_t;
using Container = std::vector<ValueType>;
/**
* @brief default ctor
*/
Young_tableau() = default;
/**
* @brief ctors
*/
Young_tableau(SizeType r, SizeType c ):
data(), rows(r), cols(c)
{}
/**
* @brief operator ()
*
* convert coordinate to iterator
*/
Iter operator()(SizeType r, SizeType c)
{
return begin() + r * rows + c;
}
/**
* @brief empty
*/
bool empty() const
{
return data.empty();
}
/**
* @brief full
*/
bool full() const
{
return data.size() == rows * cols;
}
/**
* @brief top
*/
const ValueType& top() const
{
return data.front();
}
/**
* @brief pop
*/
void pop()
{
assert(!empty());
data.front() = data.back();
data.resize(data.size() - 1);
go_down(begin());
}
/**
* @brief push
*/
void push(const ValueType& val)
{
assert(!full());
data.push_back(val);
go_up(end() - 1);
}
~Young_tableau() = default;
private:
/**
* @brief data members
*/
Container data;
SizeType rows = 0;
SizeType cols = 0;
/**
* @brief begin of Container
*/
Iter begin()
{
return data.begin();
}
/**
* @brief end of Container
*/
Iter end()
{
return data.end();
}
/**
* @brief left
*/
Iter left(Iter target)
{
return target - 1;
}
/**
* @brief up
*/
Iter up(Iter target)
{
return target - cols;
}
/**
* @brief right
*/
Iter right(Iter target)
{
return target + 1;
}
/**
* @brief down
*/
Iter down(Iter target)
{
return target + cols;
}
/**
* @brief check if target within [begin, end)
*/
bool verify(Iter target)
{
return begin() <= target && target < end();
}
/**
* @brief go up or left
*
* @complexity O( rows + cols )
*
* implemented for Problem 6-3 d, Page 168.
*/
void go_up(Iter target)
{
Iter u = up(target);
Iter l = left(target);
Iter most = target;
//! find the largest one among up, left and target
if(verify(u) && *u > *target) most = u;
if(verify(l) && *l > *most) most = l;
//! swap and recur, if true.
if(most != target)
{
std::swap(*target, *most);
go_up(most);
}
}
/**
* @brief go down or right
*
* @complexity O( rows + cols )
*
* implemented for Problem 6-3 c, Page 168.
* the same as max-heapify Page 154.
*/
void go_down(Iter target)
{
Iter d = down(target);
Iter r = right(target);
Iter least = target;
//! find the smallest one among right, down and target.
if(verify(d) && *d < *target) least = d;
if(verify(r) && *r < *least) least = r;
//! swap and recur, if true.
if(least != target)
{
std::swap(*target, *least);
go_down(least);
}
}
};
/**
* @brief operator << print in matrix style
*/
template<typename T>
inline std::ostream& operator <<(std::ostream& os, const ch6::Young_tableau<T>& rhs)
{
std::size_t count = 0;
for(const auto& item : rhs.data)
{
os << item << " ";
if(count++ == rhs.cols - 1)
{
std::cout << std::endl;
count = 0;
}
}
return os;
}
}//namespace
#endif // YOUNG_TABLEAU_H