百科问答小站 logo
百科问答小站 font logo



c++怎么在1到n这些数中随机产生k(k<n)个?当然,k个数互不相等。有什么比较好的写法吗? 第1页

  

user avatar   lz1996 网友的相关建议: 
      

传统的rand()%pool_size方法在一般情况下可以采用,但是实际上这样产生的随机数分布不是完全均匀的。如果对随机数要求较高的话,建议采用下列方法:

       #include <random> #include <iostream>  const int n=10000; const int k=1000; bool taken[n]; int result[k];  int main() {     std::random_device rd;     std::mt19937 gen(rd());     std::uniform_int_distribution<> dis(1, n);      for(int count=0; count<k; ++count)     {         int tmpResult = dis(gen);         while (taken[tmpResult])         {             tmpResult = dis(gen);         }         result[count] = tmpResult;         taken[tmpResult] = true;     }      for(int count=0; count<k; ++count)         std::cout<<result[count]<<std::endl; }      



  

相关话题

  为什么总是有人说 Java 啰嗦,却没人说 C++ 啰嗦? 
  在C#中,如何实现跟native dll 中途的线程间通信? 
  为什么GCC的版本号增速比以前快这么多? 
  哪些看似与图论无关的问题可用图论模型解决? 
  C 与 C++ 谁的效率高,为什么? 
  使用yield可以做哪些很酷的事情? 
  当你学会了什么之后感觉自己的编程算是入门了? 
  怎么用好《C++ Primer》(英文版)? 
  各个编程语言都有哪些「黑点」? 
  怎么在 Windows 7 下用 C++,不兼容啊? 

前一个讨论
常听到这洗脑那洗脑到底什么是洗脑?又是怎样洗脑?
下一个讨论
如何评价「六小龄童节目被春晚毙掉」这一传言?





© 2025-01-18 - tinynew.org. All Rights Reserved.
© 2025-01-18 - tinynew.org. 保留所有权利