Erlang 列表 merge 方法

Erlang列表

返回通过合并ListOfLists的所有子列表形成的排序列表。 在评估此功能之前,必须对所有这些子列表进行排序。 当两个元素比较相等时,将从子列表中ListOfLists中位置最小的元素选到另一个元素之前。

语法

merge(ListsofLists)

参数

  • ListsofLists −需要合并的列表的集合。

返回值

返回元素的合并列表。

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

start() ->    
   io:fwrite("~w~n",[merge([[1],[2],[3]])]).

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

[1,2,3]

Erlang列表