Thank you Ingo for remarks

.
First I did some test on two class problems, and then I switch to Iris dataset, which is a default dataset build into RM , and forgot to make changes in the clustering algorithm.
You've asked about applications to large datasets. Well, I didn't make any analysis on that subject, but I can say that all Instance Selection operators use build in RM tools and data structures, like geometriccollection etc. These operators also don't have any special memory requirements, because all exampleSets are views on datatable. This view is realized by boolean vector with the length equal to the number of samples in the datatable. This makes the foreach loop very efficient when iterating over examples, so I thing that these operators should be applicable to large datasets.
There is a small difference in clustering and optimization operators like FCM and LVQ algorithms, where the codebooks or cluster centers are being permanently updated, so starting this operator requires duplicating initial codebooks (prototypes), but I believe it shouldn't affect BigData problems.
Regards