/* check the nFind */ if( nFind<1 || nFind>iVec.size()) { std::cout<<"There is only "<< iVec.size() <<" elements in the set.\n" <<"no "<< nFind <<"th smallest element exist!" <<std::endl; return 1; }
/* call algorithm to find */ std::vector<int>::iterator
iter = findNthMin(iVec.begin(), iVec.end(),
nFind);
/* output to std output */ std::cout<<"The "<< nFind <<"th element is " <<*iter <<std::endl;