📅  最后修改于: 2022-03-11 14:52:42.298000             🧑  作者: Mango
List elements = new ArrayList<>();
// The list of strings will be sorted lexicographically
elements.sort();
// You can also implement a custom comparator
Comparator comp = new Comparator(){
@Override
public int compare(final String s1,String s2) {
//TODO return 1 if rhs should be before lhs
// return -1 if lhs should be before rhs
// return 0 otherwise (meaning the order stays the same)
}
};
elements.sort(comp);