-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathElement.java
More file actions
418 lines (204 loc) · 5.18 KB
/
Element.java
File metadata and controls
418 lines (204 loc) · 5.18 KB
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
//package gsp;
import java.util.ArrayList;
public class Element {
private ArrayList<Integer> itemset;//表示该元素的项目,按数字的升序存放
/**
* 无参数构造方法
* 初始化项目集
*
*/
public Element() {
this.itemset=new ArrayList<Integer>();
}
/**
* 带参数构造方法
* 初始化项目集,即将参数中的项目集拷贝过来
* @param items 项目集
*/
public Element(int [] items){
this.itemset=new ArrayList<Integer>();
for(int i=0;i<items.length;i++){
this.addItem(items[i]);
}
}
/**
* 添加项目
* 添加项目到项目集中
* @param item 被添加的项目
*/
public void addItem(int item){
int i;
for(i=0;i<itemset.size();i++){
if(item<itemset.get(i)){
break;
}
}
itemset.add(i,item);
}
/**
* 获得项目集
* @return 项目集
*/
public ArrayList<Integer> getItems(){
return this.itemset;
}
/**
* 获取最后一个位置的项目
* @return 项目
*/
public int getLastItem(){
if(this.itemset.size()>0){
return itemset.get(itemset.size() - 1);
}
else{
System.err.println("空元素错误,Element.getLastItem()");
return 0;
}
}
/**
* 本方法判断本元素是不是包含于元素e中
* @param e 元素
* @return true--是 false--否
*/
public boolean isContainIn(Element e){
if(this.itemset.size()>e.itemset.size()){//如果两个元素大小不同,则为不相等
return false;
}
int i=0,j=0;
while(j<e.size() && i<this.itemset.size() ){
if(this.itemset.get(i).intValue() == e.itemset.get(j).intValue()){
i++;j++;
}else{
j++;
}
}
if(i==this.itemset.size()){
return true;
}else{
return false;
}
}
/**
* 获取去除第一个项目外的元素
* @return 元素
*/
public Element getWithoutFistItem(){
Element e=new Element();
for(int i=1 ;i<this.itemset.size();i++){
e.addItem(this.itemset.get(i).intValue());
}
return e;
}
/**
* 获取去除最后一个项目外的元素
* @return 元素
*/
public Element getWithoutLastItem(){
Element e=new Element();
for(int i=0 ;i<this.itemset.size()-1;i++){
e.addItem(this.itemset.get(i).intValue());
}
return e;
}
/**
* 删除项目
* 项目位置i上的项目
* @param i 位置序号
* @return
*/
public int removeItem(int i){
if(i<this.itemset.size()){
return this.itemset.remove(i).intValue();
}
System.err.println("无效的索引!");
return -1;
}
/**
* 比较两个元素的大小
* 将传递过来的参数o与本对象比较
* @param o 被比较的元素
* @return int -- -1 本元素小于参数 1 本元素大于参速
*/
public int compareTo(Object o){
Element e=(Element)o;
int r=0;
int i=0,j=0;
while(i<this.itemset.size() && j<e.itemset.size()){
if(this.itemset.get(i).intValue() < e.itemset.get(j).intValue()){
r=-1;//本element小于e
break;
}else{
if(this.itemset.get(i).intValue() > e.itemset.get(j).intValue()){
r=1;//本element大于e
break;
}
}
i++;j++;//项目相同,都指向下一个项目
}
if(r==0){//如果目前还没有比较出谁大谁小的话
if(this.itemset.size()>e.itemset.size()){
r=1;
}
if(this.itemset.size()<e.itemset.size()){
r=-1;
}
}
return r;
}
/**
* 获取项目集的大小
* @return int--大小
*/
public int size(){
return this.itemset.size();
}
/**
* 元素拷贝方法
* 拷贝项目集
*/
public Element clone(){
Element clone=new Element();
for(int i:this.itemset){
clone.addItem(i);
}
return clone;
}
/**
* 下判断两个元素是否相同
* @param o
* @return true--相同 false--不同
*/
public boolean equalsTo(Object o){
boolean equal=true;
Element e=(Element)o;
if(this.itemset.size()!=e.itemset.size()){//如果两个元素大小不同,则为不相等
equal=false;
}
for(int i=0;equal && i<this.itemset.size();i++){
if(this.itemset.get(i).intValue()!=e.itemset.get(i).intValue()){
equal=false;
}
}
return equal;
}
/**
* 重写toString()
* 用于输出时的字符处理
*/
public String toString(){
StringBuffer s=new StringBuffer();
if(this.itemset.size()>1){
s.append("(");
}
for(int i=0;i<this.itemset.size();i++){
s.append(this.itemset.get(i).intValue());
if(i<this.itemset.size()-1){
s.append(",");
}
}
if(this.itemset.size()>1){
s.append(")");
}
return s.toString();
}
}