List是一种最普通的泛函数据结构,比较直观,有良好的示范基础。List就像一个管子,里面可以装载一长条任何类型的东西。如需要对管子里的东西进行处理,则必须在管子内按直线顺序一个一个的来,这符合泛函编程的风格。与其它的泛函数据结构设计思路一样,设计List时先考虑List的两种状态:空或不为空两种类型。这两种类型可以用case class 来表现:

     trait List[+A] {}
case class Cons[+A](head: A, tail: List[A]) extends List[A]
case object Nil extends List[Nothing]

以上是一个可以装载A类型元素的List,是一个多态的类型(Polymorphic Type)。+A表示List是协变(Covariant)的,意思是如果apple是fruit的子类(subtype)那么List[apple]就是List[fruit]的子类。Nil继承了List[Nothing],Nothing是所有类型的子类。结合协变性质,Nil可以被视为List[Int],List[String]...

List的另一种实现方式:

     trait List[+A] {
def node: Option[(A, List[A])]
def isEmpty = node.isEmpty
}
object List {
def empty[A] = new List[A] { def node = None}
def cons[A](head: A, tail: List[A]) = new List[A] { def node = Some((head, tail))}
}

以上代码中empty,cons两个方法可以实现List的两个状态。

我们还是采用第一种实现方式来进行下面有关List数据运算的示范。第二种方式留待Stream的具体实现示范说明。

先来个List自由构建器:可以用List(1,2,3)这种形式构建List:

     object List {
def apply[A](as: A*): List[A] = {
if (as.isEmpty) Nil
else Cons(as.head,apply(as.tail:_*))
}
}

说明:使用了递归算法来处理可变数量的输入参数。apply的传入参数as是个数组Array[A],我们使用了Scala标准集合库Array的方法:as.head, as.tail。示范如下:

 scala> Array(1,2,3).head
res11: Int = 1 scala> Array(1,2,3).tail
res12: Array[Int] = Array(2, 3)

增加了apply方法后示范一下List的构成:

 val li = List(1,2,3)                              //> li  : ch3.list.List[Int] = Cons(1,Cons(2,Cons(3,Nil)))
val ls = List("one","two","three") //> ls : ch3.list.List[String] = Cons(one,Cons(two,Cons(three,Nil)))

与以下方式对比,写法简洁多了:

 val lInt = Cons(1,Cons(2,Cons(3,Nil)))            //> lInt  : ch3.list.Cons[Int] = Cons(1,Cons(2,Cons(3,Nil)))

再来试一个运算:计算List[Int]里所有元素的和,还是用模式匹配和递归方式来写:

     trait List[+A] {
def sum: Int = this match {
case Nil => 0
case Cons(h: Int,t: List[Int]) => h + t.sum
}
}

我们把sum的实现放到特质申明里就可以用以下简洁的表达方式了:

 List(1,2,3) sum                                   //> res0: Int = 6

再试着玩多态函数sum:

       def sum[B >: A](z: B)(f: (B,B) => B): B = this match {
case Nil => z
case Cons(h,t) => f(h, t.sum(z)(f))
}

现在可以分别试试List[Int]和List[String]:

 List(1,2,3).sum(0){_ + _}                         //> res0: Int = 6
List("hello",",","World","!").sum(""){_ + _} //> res1: String = hello,World!

以下是一些List常用的函数:

     trait List[+A] {

       def head: A = this match {
case Nil => sys.error("Empty List!")
case Cons(h,t) => h
}
def tail: List[A] = this match {
case Nil => sys.error("Empty List!")
case Cons(h,t) => t
}
def take(n: Int): List[A] = n match {
case k if(k<0) => sys.error("index < 0 !")
case 0 => Nil
case _ => this match {
case Nil => Nil
case Cons(h,t) => Cons(h,t.take(n-1))
}
}
def takeWhile(f: A => Boolean): List[A] = this match {
case Nil => Nil
case Cons(h,t) => if(f(h)) Cons(h,t.takeWhile(f)) else Nil
}
def drop(n: Int): List[A] = n match {
case k if(k<0) => sys.error("index < 0 !")
case 0 => this
case _ => this match {
case Nil => Nil
case Cons(h,t) => t.drop(n-1)
}
}
def dropWhile(f: A => Boolean): List[A] = this match {
case Nil => Nil
case Cons(h,t) => if (f(h)) t.dropWhile(f) else this
}
}

看看以上的这些函数;是不是都比较相似?那是因为都是泛函编程风格的原因。主要以模式匹配和递归算法来实现。以下是使用示范:

 List(1,2,3).head                                  //> res0: Int = 1
List(1,2,3).tail //> res1: ch3.list.List[Int] = Cons(2,Cons(3,Nil))
List(1,2,3).take(2) //> res2: ch3.list.List[Int] = Cons(1,Cons(2,Nil))
List(1,2,3).takeWhile(x => x < 3) //> res3: ch3.list.List[Int] = Cons(1,Cons(2,Nil))
List(1,2,3) takeWhile {_ < 3} //> res4: ch3.list.List[Int] = Cons(1,Cons(2,Nil))
List(1,2,3).drop(2) //> res5: ch3.list.List[Int] = Cons(3,Nil)
List(1,2,3).dropWhile(x => x < 3) //> res6: ch3.list.List[Int] = Cons(3,Nil)
List(1,2,3) dropWhile {_ < 3} //> res7: ch3.list.List[Int] = Cons(3,Nil)

试试把一个List拼在另一个List后面:

         def ++[B >: A](a: List[B]): List[B] = this match {
case Nil => a
case Cons(h,t) => Cons(h,t.++(a))
}
 ist(1,2) ++ List(3,4)                            //> res8: ch3.list.List[Int] = Cons(1,Cons(2,Cons(3,Cons(4,Nil))))

只是想试试Scala的简洁表达方式。

噢,漏了两个:

       def init: List[A] = this match {
case Cons(_,Nil) => Nil
case Cons(h,t) => Cons(h,t.init)
}
def length: Int = this match {
case Nil => 0
case Cons(h,t) => 1 + t.length
}
 List(1,2,3).init                                  //> res9: ch3.list.List[Int] = Cons(1,Cons(2,Nil))
List(1,2,3).length //> res10: Int = 3

下面把几个泛函数据结构通用的函数实现一下:

       def map[B](f: A => B): List[B] = this match {
case Nil => Nil
case Cons(h,t) => Cons(f(h),( t map f))
}
def flatMap[B]( f: A => List[B]): List[B] = this match {
case Nil => Nil
case Cons(h,t) => f(h) ++ ( t flatMap f )
}
def filter(f: A => Boolean): List[A] = this match {
case Nil => Nil
case Cons(h,t) => if (f(h)) Cons(h,t.filter(f)) else t.filter(f)
}
 List(1,2,3) map {_ + 10}                          //> res13: ch3.list.List[Int] = Cons(11,Cons(12,Cons(13,Nil)))
List(1,2,3) flatMap {x => List(x+10)} //> res14: ch3.list.List[Int] = Cons(11,Cons(12,Cons(13,Nil)))
List(1,2,3) filter {_ != 2} //> res15: ch3.list.List[Int] = Cons(1,Cons(3,Nil))

这几个函数有多种实现方法,使Scala for-comprehension对支持的数据结构得以实现。有关这几个函数在泛函编程里的原理和意义在后面的有关Functor,Applicative,Monad课题里细说。

泛函编程(6)-数据结构-List基础的更多相关文章

  1. 泛函编程(5)-数据结构(Functional Data Structures)

    编程即是编制对数据进行运算的过程.特殊的运算必须用特定的数据结构来支持有效运算.如果没有数据结构的支持,我们就只能为每条数据申明一个内存地址了,然后使用这些地址来操作这些数据,也就是我们熟悉的申明变量 ...

  2. 泛函编程(8)-数据结构-Tree

    上节介绍了泛函数据结构List及相关的泛函编程函数设计使用,还附带了少许多态类型(Polymorphic Type)及变形(Type Variance)的介绍.有关Polymorphism的详细介绍会 ...

  3. 泛函编程(7)-数据结构-List-折叠算法

    折叠算法是List的典型算法.通过折叠算法可以实现众多函数组合(function composition).所以折叠算法也是泛函编程里的基本组件(function combinator).了解折叠算法 ...

  4. 泛函编程(14)-try to map them all

    虽然明白泛函编程风格中最重要的就是对一个管子里的元素进行操作.这个管子就是这么一个东西:F[A],我们说F是一个针对元素A的高阶类型,其实F就是一个装载A类型元素的管子,A类型是相对低阶,或者说是基础 ...

  5. 泛函编程(34)-泛函变量:处理状态转变-ST Monad

    泛函编程的核心模式就是函数组合(compositionality).实现函数组合的必要条件之一就是参与组合的各方程序都必须是纯代码的(pure code).所谓纯代码就是程序中的所有表达式都必须是Re ...

  6. 泛函编程(30)-泛函IO:Free Monad-Monad生产线

    在上节我们介绍了Trampoline.它主要是为了解决堆栈溢出(StackOverflow)错误而设计的.Trampoline类型是一种数据结构,它的设计思路是以heap换stack:对应传统递归算法 ...

  7. 泛函编程(29)-泛函实用结构:Trampoline-不再怕StackOverflow

    泛函编程方式其中一个特点就是普遍地使用递归算法,而且有些地方还无法避免使用递归算法.比如说flatMap就是一种推进式的递归算法,没了它就无法使用for-comprehension,那么泛函编程也就无 ...

  8. 泛函编程(28)-粗俗浅解:Functor, Applicative, Monad

    经过了一段时间的泛函编程讨论,始终没能实实在在的明确到底泛函编程有什么区别和特点:我是指在现实编程的情况下所谓的泛函编程到底如何特别.我们已经习惯了传统的行令式编程(imperative progra ...

  9. 泛函编程(27)-泛函编程模式-Monad Transformer

    经过了一段时间的学习,我们了解了一系列泛函数据类型.我们知道,在所有编程语言中,数据类型是支持软件编程的基础.同样,泛函数据类型Foldable,Monoid,Functor,Applicative, ...

随机推荐

  1. 使用B或BL跳转时,下一条指令的地址是这样计算的

    B跳转指令:它是个相对跳转指令,其机器码格式如下: [31:28]位是条件码:[27:24]位为“1010”(0xeaffffff)时,表示B跳转指令,为“1011”时,表示BL跳转指令:[23:0] ...

  2. windbg常用命令

    SRV*C:\Symbols*http://msdl.microsoft.com/download/symbols CPU常用命令 载入sos.dll  执行.load C:\Windows\Micr ...

  3. Activity跳转时生命周期跟踪

    1. 步骤1(打开First Activity):经过onCreate.onStart.onResume后First Activity就展现啦: 2. 步骤2(跳转至Second Activity): ...

  4. 版本控制与vermagic

    http://hychen.wuweig.org/blog/2009/10/09/rao-guo-linux-driver-vermagicjian-cha/ cd scripts grep 'dir ...

  5. Mac OSX 安装nvm(node.js版本管理器)

    我的系统 1.打开github官网https://github.com/,输入nvm搜索,选择creationix/nvm,打开 2.找到Install script,复制 curl -o- http ...

  6. js 事件捕获与事件冒泡例子

    http://codepen.io/huashiyiqike/pen/qZVdag addEventListener 默认是冒泡阶段执行,也就是父亲与子都监听时,点击子,子先处理,父亲再处理,这时加s ...

  7. Linux下MySQL不能远程访问

    最近在Linux上装了个MySQL数据库,可是远程连接MySQL时总是报出erro 2003: Can't connect to MySQL server on '211.87.***.***' (1 ...

  8. 十七、EnterpriseFrameWork框架核心类库之Web控制器

    回<[开源]EnterpriseFrameWork框架系列文章索引> EFW框架源代码下载:http://pan.baidu.com/s/1qWJjo3U EFW框架中的WebContro ...

  9. Probabilistic Graphical Models

    http://innopac.lib.tsinghua.edu.cn/search~S1*chx?/YProbabilistic+Graphical+Models&searchscope=1& ...

  10. Netty5 + WebSocket 练习

    1. 了解WebSocket知识 略2. websocket实现系统简单反馈时间 WebSocketServerHandler.java package com.jieli.nettytest.web ...