English 中文(简体)
Haskell - 如何建立从清单中恢复第五个要素的职能
原标题:Haskell - how to create a function that returns the fifth element from a list

如何在Haskell设立一个职能,将第五部分从一个清单中删除。

与此类似:

fifth [] = []!!4

如果返回:

*Main> fifth [1,2,3,20,30,40]
30
最佳回答

简单使用:

fifth :: [a] -> a
fifth l = l !! 4

如你所建议的那样使用<代码>fifth[ ]是错误的,因为这一模式会与空名单相对应——你只是想把一个变称与完整的名单挂钩,以便你能够使用<代码>!。

你们甚至可以把职能定义为:

fifth :: [a] -> a
fifth = (!!4)

这里我们使用partial application<: 你通常认为<代码>!是一种具有两个论点的职能:清单和分类。 我们可以向它提供一种论点,并取得一项新职能(fifth),但只有一份清单。 当我们提供<条码>(!4),附有一份清单时,它又退回了第五个要素:

Prelude> let fifth = (!!4)
Prelude> fifth [1,2,3,20,30,40]
30

该职能当然是部分<>职能,因为小名单将失败:

Prelude> (!!4) [1,2,3,20]
*** Exception: Prelude.(!!): index too large

这可望实现。 如果你想要,你可以让它回到<条码>,而不是<条码>。

fifth :: [a] -> Maybe a
fifth (a:b:c:d:e:rest) = Just e
fifth _ = Nothing

第一种模式将相应于5年或5年以上的时间清单,第二种模式则与第一种情况不符。 你们喜欢这样做:

*Main> fifth [1,2,3,20,30,40]
Just 30
*Main> fifth [1,2,3,20]
Nothing

您现在有forced >,总的模式与fifth的结果相吻合。 http://www.un.org/Depts/DGACM/index_french.htm 这意味着,如果您的代码为fifth someList ,则该代码为must。 考虑到<代码> 清单可能太短。 这样,你就可以在compile time上确保该职能中的任何runtime错误。

问题回答

我将界定一个安全的索引操作员!,然后在上界定fifth!

(!!!)                  :: [a] -> Int -> Maybe a
xs       !!! n | n < 0 =  Nothing
[]       !!! _         =  Nothing
(x : _)  !!! 0         =  Just x
(_ : xs) !!! n         =  xs !!! (n - 1)

fifth :: [a] -> Maybe a
fifth =  (!!! 4)

另选<>unsafe

fifth = head . drop 4

但是,令人厌烦的是,有时人们只是知道这一压倒性名单将有4个以上内容。 这种类型的制度仅仅不足以表达它(使用标准清单,即)。





相关问题
Finding a class within list

I have a class (Node) which has a property of SubNodes which is a List of the Node class I have a list of Nodes (of which each Node may or may not have a list of SubNodes within itself) I need to be ...

How to flatten a List of different types in Scala?

I have 4 elements:List[List[Object]] (Objects are different in each element) that I want to zip so that I can have a List[List[obj1],List[obj2],List[obj3],List[obj4]] I tried to zip them and I ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

Is List<> better than DataSet for UI Layer in ASP.Net?

I want to get data from my data access layer into my business layer, then prepare it for use in my UI. So i wonder: is it better to read my data by DataReader and use it to fill a List<BLClasses&...

What is the benefit to using List<T> over IEnumerable<T>?

or the other way around? I use generic lists all the time. But I hear occasionally about IEnumerables, too, and I honestly have no clue (today) what they are for and why I should use them. So, at ...

灵活性:在滚动之前显示错误的清单

我有一份清单,在你滚动之前没有显示任何物品,然后这些物品就显示。 是否有任何人知道如何解决这一问题? 我尝试了叫人名单。

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...