コード例 #1
0
 // is the set empty?
 public boolean isEmpty() {
   return points.size() == 0;
 }
コード例 #2
0
 // number of points in the set
 public int size() {
   return points.size();
 }
コード例 #3
0
ファイル: PointSET.java プロジェクト: Ramin8or/algorithms
 // number of points in the set
 public int size() {
   return set.size();
 }