VOOZH about

URL: https://www.geeksforgeeks.org/cpp/generating-test-cases-generate-and-generate_n-in-c/

⇱ Generating Test Cases (generate() and generate_n() in C++) - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Generating Test Cases (generate() and generate_n() in C++)

Last Updated : 29 May, 2017
Generating test cases for array programs can be a cumbersome process. But the generate and generate_n functions in the STL (Standard Template Library), come handy to populate the array with random values.
  • generate() The generate functions assigns random values provided by calling the generator function 'gen' to the elements in the range [begin, end). Notice that begin is included in the range but end is NOT included. Following code demonstrates the implementation of generate : Output :
    832 60 417 710 487 260 920 803 576 58
    
    NOTE : The output would be different each time we run the code because of srand. If we remove srand, we would get the same set of random numbers every time we run the code.
  •  
  • generate_n() The generate_n does the same job as generate upto n elements starting from the element pointed to by the begin iterator.   The following code demonstrates the working of generate_n :
Output :
177 567 15 922 527 4 0 0 0 0
NOTE : Here also, the output would be different each time we run the code because of srand. If we remove srand, we would get the same set of random numbers every time we run the code.  
Comment
Article Tags:
Article Tags: