#include<iostream>#include<sstream>#include<algorithm>using namespace std;int main(){    int array[] = {0,1,2,3,4,5,6,7,8,9,10};    int size = sizeof(array)/sizeof(int);    int n;    cin >> n;    int* *index = new int*[size];    for(int i = 0; i < size; ++i)        index[i] = array+i;    int j ...