I want to create vector array like this in c++ in Java
vector<int> tab_u[255]
I don't have idea how to fast create. I try this:
List<Integer> tab[] = new List[255];
but i cant add something
i want something like this
[0] = {1,2,2,3}
[1] = {2,3}
[2] = {1}