// 来源:http://www.cplusplus.com/forum/general/207328/
template < typename T > void list_shuffle( std::list<T>& lst ) // shuffle contents of a list
{
// create a vector of (wrapped) references to elements in the list
// http://en.cppreference.com/w/cpp/utility/functional/reference_wrapper
std::vector< std::reference_wrapper< const T > > vec( lst.begin(), lst.end() ) ;
// shuffle (the references in) the vector
std::shuffle( vec.begin(), vec.end(), std::mt19937{ std::random_device{}() } ) ;
// copy the shuffled sequence into a new list
std::list<T> shuffled_list { vec.begin(), vec.end() } ;
// swap the old list with the shuffled list
lst.swap(shuffled_list) ;
}
C++ list shuffle
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 说明 使用一个随机数产生器来打乱[first, last)之间元素的顺序。 有3个参数,前2个参数指定容器的范围,...
- 今天青石的票圈出镜率最高的,莫过于张艺谋的新片终于定档了。 一张满溢着水墨风的海报一次次的出现在票圈里,也就是老谋...