C++ - 洗牌:从这里需要

C++ - shuffle : required from here

我是 C++ 的新手,但是,我正在尝试创建一些盐和胡椒噪音。 它几乎完成了,只是在这之间我想洗牌一个整数数组,无论我做什么,无论我使用什么洗牌函数,我总是得到那个不告诉我任何东西的令人讨厌的 "required from here" 。 这是我的代码:

#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>
#include <random>
#include <algorithm>
#include <iterator>



using namespace std;
using namespace cv;



int main( int argc, char** argv )
{
 cv::Mat m( 256, 256, CV_8UC1, cv::Scalar(255) );

      //   Print it
      //  int counter = 0;



        unsigned int range = 255 - 0 + 1;
        int num = rand() % range ;



       int x[256];
       for (int i = 0; i<256; i++){
           x[i]= i;

       }


       srand(17);
       auto engine = std::default_random_engine{};
       shuffle(x[0], x[255], engine);
       int coord[256][256];
       for (int t= 0; t<256; t++){
           coord[t][t] = x[t];
       }

       for (int j = 0; j<256; j++){
           for (int k = 0; 0<256; k++)
           {if (coord[j][k]<=num){
               cv::Mat black( m, cv::Rect( j, k, 1, 1) );
               black = cv::Scalar( 0, 0, 0 );
           }

           }
       }

// Create a named window
             cv::namedWindow( "Test", cv::WINDOW_AUTOSIZE );

             // Display
             imshow( "Test", m );

             // Wait until a key is pressed
             cv::waitKey(0);

              return 0;
        };

我得到的错误似乎是由这一行引起的:

shuffle(x[0], x[255], engine);

现在,我很乐意提供完整的编译器文本,但有些行太长以至于无法进行必要的缩进,我已经尝试过了。 有人对此有解决方法吗?

你必须传递迭代器,而不是值。

应该是

shuffle(std::begin(x), std::end(x), engine);

shuffle(x, x + 256, engine);