Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
You cannot. You have to traverse, or use a more sophisticated list that does the traversing for you... – Lukas Eder Jul 27 '11 at 15:20
You can't? Is it that long a list that it's really difficult just to iterate over it? – Shawn D. Jul 27 '11 at 15:21
1  
If 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
Yes. That was the problem. It has been solved now. – Mr Morgan Jul 27 '11 at 17:19

1 Answer

Just use

int listCount = data.size();

That tells you how many lists there are (assuming none are null). If you want to find out how many strings there are, you'll need to iterate:

int total = 0;
for (List<String> sublist : data)
{
    // TODO: Null checking
    total += sublist.size();
}
// total is now the total number of strings
share|improve this answer
I've tried this prior to posting. For some reason, this is not giving the correct result. – Mr Morgan Jul 27 '11 at 15:21
4  
@Mr Morgan: I doubt that. Please post a short but complete program demonstrating the problem. – Jon Skeet Jul 27 '11 at 15:27
@Mr Morgan, List.size() is what I would expect too. Can you provide a example of when it doesn't produce the desired result? Also, what concrete implementation are you using for the outer List? – Dilum Ranatunga Jul 27 '11 at 15:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.