G
Generic Usenet Account
I had a need to randomly select an element from an STL collection. It
does not appear that this functionality is provided out-of-the-box
with STL. Here is my crude implementation. I am using advance and
distance in my approach. Is distance guaranteed to return an integral
value? If not, can anyone suggest improvements:
--Song
///// Header File //////
#ifndef _RANDOM_ENTRY_H_
#define _RANDOM_ENTRY_H_
#include <stdlib.h>
#include <sys/time.h>
#include <algorithm>
template<typename iterator>
iterator
random_entry(iterator first, iterator last)
{
int separation = distance(first, last);
if(separation)
{
struct timeval tod; // time-of-day
gettimeofday(&tod, NULL);
srand(tod.tv_sec+tod.tv_usec);
int randOffset = rand()% separation;
advance(first, randOffset);
}
iterator retVal = first;
return retVal;
}
#endif //_RANDOM_ENTRY_H_
///// Driver File /////
#include "random_entry.h"
#include <list>
#include <vector>
#include <map>
#include <string>
#include <iostream>
using namespace std;
main()
{
list<int> li;
li.push_back(10);
li.push_back(19);
li.push_back(28);
li.push_back(37);
list<int>::iterator liItor = random_entry(li.begin(), li.end());
if(liItor != li.end())
cout << *liItor << endl;
else
cout << "Empty collection\n";
vector<string> vs;
vs.push_back("Brad Pitt");
vs.push_back("Angelina Jolie");
vs.push_back("Tom Cruise");
vs.push_back("Renee Zellweger");
vs.push_back("Julia Roberts");
vs.push_back("Denzel Washington");
vs.push_back("Will Smith");
vector<string>::iterator vsItor = random_entry(vs.begin(),
vs.end());
if(vsItor != vs.end())
cout << *vsItor << endl;
else
cout << "Empty collection\n";
map<string, string> ms;
ms["President"] = "George W Bush";
ms["Vice President"] = "Dick Cheney";
ms["Senate Majority Leader"] = "Harry Reid";
ms["Senate Minority Leader"] = "Mitch Mcconnell ";
ms["Speaker"] = "Nancy Pelosi";
map<string, string>::iterator msItor = random_entry(ms.begin(),
ms.end());
if(msItor != ms.end())
cout << msItor->first << ", " << msItor->second << endl;
else
cout << "Empty collection\n";
}
does not appear that this functionality is provided out-of-the-box
with STL. Here is my crude implementation. I am using advance and
distance in my approach. Is distance guaranteed to return an integral
value? If not, can anyone suggest improvements:
--Song
///// Header File //////
#ifndef _RANDOM_ENTRY_H_
#define _RANDOM_ENTRY_H_
#include <stdlib.h>
#include <sys/time.h>
#include <algorithm>
template<typename iterator>
iterator
random_entry(iterator first, iterator last)
{
int separation = distance(first, last);
if(separation)
{
struct timeval tod; // time-of-day
gettimeofday(&tod, NULL);
srand(tod.tv_sec+tod.tv_usec);
int randOffset = rand()% separation;
advance(first, randOffset);
}
iterator retVal = first;
return retVal;
}
#endif //_RANDOM_ENTRY_H_
///// Driver File /////
#include "random_entry.h"
#include <list>
#include <vector>
#include <map>
#include <string>
#include <iostream>
using namespace std;
main()
{
list<int> li;
li.push_back(10);
li.push_back(19);
li.push_back(28);
li.push_back(37);
list<int>::iterator liItor = random_entry(li.begin(), li.end());
if(liItor != li.end())
cout << *liItor << endl;
else
cout << "Empty collection\n";
vector<string> vs;
vs.push_back("Brad Pitt");
vs.push_back("Angelina Jolie");
vs.push_back("Tom Cruise");
vs.push_back("Renee Zellweger");
vs.push_back("Julia Roberts");
vs.push_back("Denzel Washington");
vs.push_back("Will Smith");
vector<string>::iterator vsItor = random_entry(vs.begin(),
vs.end());
if(vsItor != vs.end())
cout << *vsItor << endl;
else
cout << "Empty collection\n";
map<string, string> ms;
ms["President"] = "George W Bush";
ms["Vice President"] = "Dick Cheney";
ms["Senate Majority Leader"] = "Harry Reid";
ms["Senate Minority Leader"] = "Mitch Mcconnell ";
ms["Speaker"] = "Nancy Pelosi";
map<string, string>::iterator msItor = random_entry(ms.begin(),
ms.end());
if(msItor != ms.end())
cout << msItor->first << ", " << msItor->second << endl;
else
cout << "Empty collection\n";
}