Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

so my program gets a directory, filter the files according to different filters, then perform several actions and return the files in a desired order. i thought it is not necessary to order before i filter because then i would sort a lot of files for nothing. after the files are sorted i return them in a TreeSet.

so, my question is, what would be the best data structure to store the files before i put them in order? by best i mean in terms of run time of course. thanks, yotam

share|improve this question
1  
Probably ArrayList. You don't have to return a TreeSet: Collections.sort(list) is good enough – iluxa Mar 9 '11 at 17:10

2 Answers

up vote 0 down vote accepted

I agree with iluxa, just use an ArrayList. When you sort then you can use Collections.sort, as iluxa mentioned, but if you have a list of File objects (as opposed to just file name Strings) then you will need pass through a second parameter to the sort method. This will be an anonymous subclass of Comparator, something like the below:

Collections.sort(listOfDateObjects, new Comparator<File>() {

     @Override
     public int compare(File o1, File o2) {
         // put your comparison logic here
     }
});
share|improve this answer

A simple array should be fine. As you loop through the array of files, anything that passes your filters add to your TreeSet that you will return.

share|improve this answer
oh i can't, requirements says first filter then add to treeSet – yotamoo Mar 9 '11 at 20:04
@yota, That is still filtering before you add it to the set. If there is a requirement you haven't mentioned yet, please update your question. – jzd Mar 9 '11 at 20:07

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.