0

I searched it up but I couldn't find anything since I don't know the actual name to it. Is it possible to have a nonlexicographic order for example the Alphabet comes first before then numbers then symbols?

I know in java compareTo statement does it lexigraphic so is there a non-lexicographic order?

Wolf
  • 311
  • 1
  • 3
  • 12

2 Answers2

2

When sorting or creating sorted collections, you can always specify your own instance of the object's Comparator. That way you can alter the ordering of objects.

Giovanni Botta
  • 9,626
  • 5
  • 51
  • 94
0

You can write your own compareTo function for classes so you can order your objects anyway you want.

wbest
  • 611
  • 1
  • 6
  • 15