Exemplo n.º 1
0
 public Cluster(Book _c)
 {
     center = _c;
 }
Exemplo n.º 2
0
 public void AddMember(Book _m)
 {
     members.Add(_m);
 }
Exemplo n.º 3
0
 public Pair(Book _c, Book _m, double _d)
 {
     this.center = _c;
     this.distance = _d;
     this.member = _m;
 }