Such as int int* lis[9] = {1,2,3,10,20,21};, how to split it into {{1,2,3},{10},{20,21}} and return a map to map the int to t
int* lis[9] = {1,2,3,10,20,21};
{{1,2,3},{10},{20,21}}
map
int