向量是动态数组,具有在插入或删除元素时自动调整自身大小的能力,并且容器自动处理其存储。也可以使用generate函数和rand()函数以随机值创建它。
以下是这两个STL函数的模板:
句法:
int rand(void): It returns a pseudo-random number in the range of 0 to RAND_MAX.
RAND_MAX: is a constant whose default value that may vary between implementations but it is granted to be at least 32767.
void generate(ForwardIterator first, ForwardIterator last, Generator gen)
在哪里,
- first:转发迭代器,指向容器的第一个元素。
- last:转发迭代器,指向容器的最后一个元素。
- gen:生成器函数,将基于其分配值。
- 返回值:由于它的返回类型为空,因此它不返回任何值。
为了每次都具有不同的随机向量,请运行此程序,其想法是使用srand()函数。否则,每次编译后输出向量将相同。
句法:
void srand(unsigned seed): This function seeds the pseudo-random number generator used by rand() with the value seed.
下面是上述方法的实现:
C++
// C++ program to generate the vector
// with random values
#include
using namespace std;
// Driver Code
int main()
{
// Size of vector
int size = 5;
// Initialize the vector with
// initial values as 0
vector V(size, 0);
// use srand() for different outputs
srand(time(0));
// Generate value using generate
// function
generate(V.begin(), V.end(), rand);
cout << "The elements of vector are:\n";
// Print the values in the vector
for (int i = 0; i < size; i++) {
cout << V[i] << " ";
}
return 0;
}
输出:
The elements of vector are:
995552582 698831766 2088692742 1348138651 64302615
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。