Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我正在使用的。我有一个包含卡片信息的 Card 类,我有一个设置 52 张卡片组的卡片组,我有一个设置卡片向量的 Shoe 类。问题是洗牌。std::random_shuffle 效果很好,但我无法完成我正在寻找的东西。
我可以洗牌,也可以洗牌的向量,但它仍然会将牌堆堆叠在一起。我正在寻找一种将牌组洗牌的方法。任何帮助将不胜感激。;)。
在 Shoe 类中,您可以创建另一个卡片向量并使用 insert 方法将所有 Deck 向量连接在一起,然后将结果向量洗牌(假设您只是想要一个装满卡片的大量混合 Shoe)。