?? rowset.java
字號(hào):
public class RowSet extends ItemSet{ RowSet() { super(); } RowSet( ItemSet c ) { super(); Object o[] = c.toArray(); for( int i=0; i<o.length; i++) this.add( new Row( (ItemSet)o[i] ) ); } RowSet( RowSet c ) { super(); this.union(c); } public ItemSet toItemSet() { ItemSet itemSet = new ItemSet(); Object o[] = this.toArray(); for(int i=0; i<o.length; i++) itemSet.add( ((Row)o[i]).getSet() ); return itemSet; } public void updateSupport( ItemSet s ) { Object o[] = this.toArray(); for(int i=0; i<o.length; i++) ((Row)o[i]).updateSupport(s); } public void updateSupportA( ItemSet s ) { Object o[] = this.toArray(); for(int i=0; i<o.length; i++) ((Row)o[i]).updateSupportA(s); } public void pruneForMinimumSupport( int minSup ) { Object o[] = this.toArray(); for(int i=0; i<o.length; i++) if( ((Row)o[i]).getSupport() < minSup ) this.remove(o[i]); }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -