| Author |
How to get sub lists of a list
|
pjoisha
Ranch Hand
Joined: Mar 06, 2001
Posts: 123
|
|
Hi all, I'm using Arrays.sort(Object[], Comparator) to help sort some of my objects. However, I now have a need to create sublists off of a sorted list For example I have a list of following objects Person[] person = new Person[3]; // The Person constructor takes // LastName, FirstName person[0] = new Person(Goodyear, Nancy); person[1] = new Person(Clark,Stanley); person[2] = new Person(Goodyear, Elvis); I sort them Array.sort(person, Person.LastNameComparator); The list ends up being Clark, Stanley Goodyear, Nancy Goodyear, Elvis However, what I want the sort interface to return is a an array of sub lists (each sub list has only duplicates in them) as follows SubList1: Clark, Stanley SubList1: Goodyear, Nancy Goodyear, Elvis Are there any Java APIs or some other techniques available to do this? Thanks in advance PJ
|
 |
Joel McNary
Bartender
Joined: Aug 20, 2001
Posts: 1815
|
|
I have always used something akin to the following:
|
Piscis Babelis est parvus, flavus, et hiridicus, et est probabiliter insolitissima raritas in toto mundo.
|
 |
pjoisha
Ranch Hand
Joined: Mar 06, 2001
Posts: 123
|
|
|
Thanks Joel
|
 |
 |
|
|
subject: How to get sub lists of a list
|
|
|