If I have a List<List<String>> data in Java, I can get the length of the first list via code:
int lengthData = data.get(0).size();
But how do I get the number of lists in the structure without traversing the list of lists to find out?
Maybe I've been a bit unclear. I have the structure:
List<List<String>> data
And I see that:
int i = data.size();
Will equal 1 because it is the root list. So what I want to know is how many sublists there are. Traversal of the structure like this:
for (List<String> l : data)
{
total ++;
}
Only gives me a result of 1 which I find odd.
I have data of the form:
List 1 ==> 1, 2, 3, 4 List 2 ==> 3, 8. 9, 1
And so on where these are sublists of the root list.
data.size()is returning 1, then you don't have two sublists. You have one. That's why iterating over it only gives one result too. Everything you've said points to a problem in your original data. I suspect if you try to come up with a short but complete program demonstrating the problem, you'll work out what's going wrong. – Jon Skeet Jul 27 '11 at 16:07