C语言,使用qsort排序,然后去重后放入st_R数组,通过strstr函数检查是否被I中包含,最后输出结果。 #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct{ int val; int index[100]; int idxNums; } ST_R; ST_R st_R[100]; int cmp(int* a, int *b){ return (*a)>(*b) ? 1: -1; } int check(int...