Question

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?

Était-ce utile?

La solution

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.

Autres conseils

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top