迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > C++ >

在 C++ 中随机化向量

作者:迹忆客 最近更新:2023/03/23 浏览次数:

本文将演示关于如何在 C++ 中对向量元素进行随机化的多种方法。

使用 shuffle 算法来洗牌向量元素

std::shuffle 是 C++ <algorithm> 库的一部分,实现了随机排列功能,可以应用于给定范围内的元素。该函数将范围迭代器作为前两个参数,随机数发生器作为第三个参数。随机数生成器是一个函数对象。当代 C++ 推荐使用随机数生成器的标准库实用程序。应该使用 std::random_device 来产生不确定的数字。

最后,必须创建所选的随机数引擎对象,并将其传递给 shuffle 算法,以生成范围内的随机排列。请注意,我们在随机化完成之前和之后打印一个整数向量。

#include <iostream>
#include <vector>
#include <random>
#include <algorithm>

using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector; using std::shuffle;

template<typename T>
void printVectorElements(vector<T> &vec)
{
    for (auto i = 0; i < vec.size(); ++i) {
        cout << vec.at(i) << "; ";
    }
    cout << endl;
}

int main() {
    vector<int> i_vec1 = {12, 32, 43, 53, 23, 65, 84};

    cout << "i_vec1           : ";
    printVectorElements(i_vec1);

    std::random_device rd;
    std::default_random_engine rng(rd());
    shuffle(i_vec1.begin(), i_vec1.end(), rng);

    cout << "i_vec1 (shuffled): ";
    printVectorElements(i_vec1);
    cout << endl;

    return EXIT_SUCCESS;
}

输出:

i_vec1           : 12; 32; 43; 53; 23; 65; 84;
i_vec1 (shuffled): 53; 32; 84; 23; 12; 43; 65;

作为前一种方法的替代,我们可以使用 std::beginstd::end 对象实现相同的子程序,将范围迭代器传递给 shuffle 函数。下面的例子可以是一个更通用的版本,用于特定的编码方案。

#include <iostream>
#include <vector>
#include <random>
#include <algorithm>

using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector; using std::shuffle;

template<typename T>
void printVectorElements(vector<T> &vec)
{
    for (auto i = 0; i < vec.size(); ++i) {
        cout << vec.at(i) << "; ";
    }
    cout << endl;
}

int main() {
    vector<int> i_vec1 = {12, 32, 43, 53, 23, 65, 84};

    cout << "i_vec1           : ";
    printVectorElements(i_vec1);

    std::random_device rd;
    std::default_random_engine rng(rd());
    shuffle(std::begin(i_vec1), std::end(i_vec1), rng);

    cout << "i_vec1 (shuffled): ";
    printVectorElements(i_vec1);
    cout << endl;

    return EXIT_SUCCESS;
}

输出:

i_vec1           : 12; 32; 43; 53; 23; 65; 84;
i_vec1 (shuffled): 43; 23; 32; 65; 53; 12; 84;

使用 random_shuffle 算法对向量元素进行随机化

std::random_shuffle 是 C++ 标准库中的另一个实用算法。旧版本的 std::shuffle 已经被最新的 C++ 标准舍弃了。虽然它仍可以在旧版 C++ 的编码环境中使用。

random_shuffle 可以采取用户提供的随机数生成器,但由于旧版本的 C++ 缺乏随机库设施,人们可能只向函数提供范围迭代器。在后一种情况下,random_shuffle 利用实现中定义的随机数生成器,有时正好是 std::rand 函数调用。

#include <iostream>
#include <vector>
#include <random>
#include <algorithm>

using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector; using std::shuffle;

template<typename T>
void printVectorElements(vector<T> &vec)
{
    for (auto i = 0; i < vec.size(); ++i) {
        cout << vec.at(i) << "; ";
    }
    cout << endl;
}

int main() {
    vector<int> i_vec1 = {12, 32, 43, 53, 23, 65, 84};

    cout << "i_vec1           : ";
    printVectorElements(i_vec1);

    std::random_shuffle(i_vec1.begin(), i_vec1.end());

    cout << "i_vec1 (shuffled): ";
    printVectorElements(i_vec1);
    cout << endl;

    return EXIT_SUCCESS;
}

输出:

i_vec1           : 12; 32; 43; 53; 23; 65; 84;
i_vec1 (shuffled): 23; 53; 32; 84; 12; 65; 43;

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 C++ 中通过掷骰子生成随机值

发布时间:2023/04/09 浏览次数:169 分类:C++

本文解释了如何使用时间因子方法和模拟 C++ 中的掷骰子的任意数方法生成随机数。了解它是如何工作的以及它包含哪些缺点。提供了一个 C++ 程序来演示伪数生成器。

在 C++ 中使用模板的链表

发布时间:2023/04/09 浏览次数:158 分类:C++

本文解释了使用模板在 C++ 中创建链表所涉及的各个步骤。工作程序演示了一个链表,该链表使用模板来避免在创建新变量时声明数据类型的需要。

在 C++ 中添加定时延迟

发布时间:2023/04/09 浏览次数:142 分类:C++

本教程将为你提供有关在 C++ 程序中添加定时延迟的简要指南。这可以使用 C++ 库为我们提供的一些函数以多种方式完成。

在 C++ 中创建查找表

发布时间:2023/04/09 浏览次数:155 分类:C++

本文重点介绍如何创建查找表及其在不同场景中的用途。提供了三个代码示例以使理解更容易,并附有代码片段以详细了解代码。

如何在 C++ 中把字符串转换为小写

发布时间:2023/04/09 浏览次数:63 分类:C++

介绍了如何将 C++ std::string 转换为小写的方法。当我们在考虑 C++ 中的字符串转换方法时,首先要问自己的是我的输入字符串有什么样的编码

如何在 C++ 中确定一个字符串是否是数字

发布时间:2023/04/09 浏览次数:163 分类:C++

本文介绍了如何检查给定的 C++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便