> Erlang中文手册 > sort/1 排序一个列表

lists:sort/1

排序一个列表

用法:

sort(List1) -> List2

将列表 List1 里的元素从小到大排序,然后返回一个排序后的新列表。

lists:sort([5, 1, 4, 3, 2]).