Login
Remember
Register
Ask a Question
What is a couple of ways that you could sort a collection?
0
votes
asked
Jan 27, 2020
in
JAVA
by
rahuljain1
What is a couple of ways that you could sort a collection?
#sort-collection
Java-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 27, 2020
by
SakshiSharma
You can either use the Sorted collection like TreeSet or TreeMap or you can sort using the ordered collection like a list and using Collections.sort() method.
...