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