Erlang 列表 sort 方法

Erlang列表

对元素列表进行排序。

语法

sort(lst)

参数

  • Lst −需要排序的元素列表。

返回值

返回元素的排序列表。

-module(helloworld). 
-import(lists,[sort/1]). 
-export([start/0]). 

start() -> 
   Lst1=[5,6,4], 
   io:fwrite("~p~n",[sort(Lst1)]).

当我们运行上面的程序时,我们将得到以下结果。

[4,5,6]

Erlang列表