一、题目 二、解题思路 三、解题代码 一、题目 There are N children standing in a line. Each child is assigned a rating value. You are giving candies to these children subjected to the following ...
一、题目 二、解题思路 三、解题代码 一、题目 Given a sequence of integers, find the longest increasing subsequence (LIS). You code should return the length of the LIS. Example For [5, 4, 1, 2,...
常用列表处理函数 member append reverse delete_all 常用列表处理函数 以下各小节给出了一些简单列表处理函数的使用示例。这里所描述的所有函数都包含在标准Erlang发行版的lists模块中(细节参见附录C)。 member member(X,L)在X是列表L的元素时返回true,否则返回false。 me...