質問

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?

役に立ちましたか?

解決

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.

他のヒント

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top