BCA Projects using Java: Mini Project of Tree set Sorting
BCA Projects using Java: Mini Project of Tree set Sorting
Project Title: Sorting Using Tree set Algorithm
What is TreeSet?
The class TreeSet is actually a sorted collection.
We can insert elements in a tree set collection in any order.
When we iterate through the collection, the values will be presented automatically in a sorted order.
Here the sorting is done using tree data structure.
Example:
SortedSet sorter=new TreeSet(); sorter.add("D");…
View On WordPress













