内容简介:在数学和计算机科学中,函数式编程中,高阶函数比较常见了。注:
高阶函数(Higher-order function)
在数学和计算机科学中, 高阶函数 是至少满足下列一个条件的函数:
- 接受一个或多个函数作为输入
- 输出一个函数
函数式编程中,高阶函数比较常见了。
注: $0
, $1
, $2
… 表示闭包第一个参数,第二个参数,第三个参数…。 详细可参考 以撸代码的形式学习Swift-7:闭包(Closure)
1 sorted
根据给定的条件(一个用于比较的闭包)来对数组进行排序。
函数原型:
public func sorted(by areInIncreasingOrder: (Element, Element) throws -> Bool) rethrows -> [Element]
let numbers = [1, 4, 2, 3]
let res = numbers.sorted {
$0 < $1
}
print(res.description)
2 map
返回一个包含对原数组每个元素进行给定闭包处理后元素的数组。(也就是每个元素进行相同处理)
函数原型:
public func map<T>(_ transform: (Element) throws -> T) rethrows -> [T]
let arr = [1, 2, 4]
let brr = arr.map {
"No." + String($0)
}
// brr = ["No.1", "No.2", "No.4"]
3 reduce
Returns the result of combining the elements of the sequence using the given closure.( 返回使用给定闭包组合序列元素的结果。)
函数原型:
public func reduce<Result>(_ initialResult: Result, _ nextPartialResult: (Result, Element) throws -> Result) rethrows -> Result
let crr = arr.reduce(0) {
(prevSum: Int, element: Int) in
return prevSum + element
} // crr = 7
let drr = arr.reduce("") {
if $0 == "" {
return String($1)
} else {
return $0 + " " + String($1)
}
}
print(drr) // drr = "1 2 4"
let res2 = [3,5,8,9].reduce(2) {
(prevSum: Int, element: Int) in
return prevSum + element
}
print(res2) // 27。 2+3+5+8+9 = 27
4 forEach
Calls the given closure on each element in the sequence in the same order as a for-in loop.(与 for-in
类似)
函数原型:
public func forEach(_ body: (Element) throws -> Void) rethrows
["Swift","OC","iOS","macOS"].forEach {
print($0)
}
5 flatMap
Returns an array containing the concatenated results of calling the given transformation with each element of this sequence.(返回一个数组,其中包含使用此序列的每个元素调用给定转换的连接结果。)
函数原型:
public func flatMap(_ transform: (Element) throws -> String?) rethrows -> [String]
let collections = [[5, 2, 7], [4, 8], [9, 1, 3]]
let flat = collections.flatMap { $0 }
// [5, 2, 7, 4, 8, 9, 1, 3]
flatMap和map的区别是,对二维数组时flatMap有个降维处理,对于一位数组,两者没有明显区别
let numbersCompound = [[1,2,3],[4,5,6]]
let mapped = numbersCompound.map { $0.map{ "\($0)-map" } }
print(mapped) // [["1-map", "2-map", "3-map"], ["4-map", "5-map", "6-map"]]
let flatMapped = numbersCompound.flatMap { $0.map{ "\($0)-flatMap" } }
print(flatMapped) // ["1-flatMap", "2-flatMap", "3-flatMap", "4-flatMap", "5-flatMap", "6-flatMap"]
let numbers2 = [1, 2, 3, 4]
let mapres = numbers2.map { Array(repeating: $0, count: $0) }
// [[1], [2, 2], [3, 3, 3], [4, 4, 4, 4]]
let flatMapres = numbers2.flatMap { Array(repeating: $0, count: $0) }
// [1, 2, 2, 3, 3, 3, 4, 4, 4, 4]
注:新版Swift使用了 Sequence.compactMap(_:)
来替代 Sequence.flatMap
, 详细
6 filter
Returns an array containing, in order, the elements of the sequence that satisfy the given predicate.(返回一个数组,该数组按顺序包含满足给定闭包的序列元素。)
函数原型:
public func filter(_ isIncluded: (Element) throws -> Bool) rethrows -> [Element]
let err = arr.filter {
$0 % 2 == 0
}
// err = [2, 4]
playground文件在 andyRon/LearnSwift
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- Python第六章-函数06-高阶函数
- JS 函数式编程思维简述(二):高阶函数
- Python小世界:匿名函数、高阶函数、推导式
- Python|高阶函数
- Javscript 高阶函数(上)
- 【重温基础】21.高阶函数
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
数据驱动:从方法到实践
桑文锋 / 电子工业出版社 / 2018-3 / 49
本书是从理论到实践的全面且细致的企业数据驱动指南,从作者的百度大数据工作说起,完整还原其从零到一构建百度用户行为大数据处理平台经历。详解大数据本质、理念与现状,围绕数据驱动四环节——采集、建模、分析、指标,深入浅出地讲述企业如何将数据驱动方案落地,并指出数据驱动的价值在于“数据驱动决策”、“数据驱动产品智能”。最后通过互联网金融、电子商务、企业服务、零售四大行业实践,从需求梳理、事件指标设计、数据......一起来看看 《数据驱动:从方法到实践》 这本书的介绍吧!