worklistalgorithm.scala
来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 57 行
SCALA
57 行
/* NSC -- new Scala compiler * Copyright 2005-2006 LAMP/EPFL * @author Martin Odersky */// $Id: WorklistAlgorithm.scala 8840 2006-10-04 15:20:29Z michelou $package scala.tools.nsc.backendimport scala.tools.nsc.ast._import scala.collection.mutable.MutableList/** * Simple implementation of a worklist algorithm. A processing * function is applied repeatedly to the first element in the * worklist, as long as the stack is not empty. * * The client class should mix-in this class and initialize the * worklist field and define the <code>processElement</code> method. * Then call the <code>run</code> method providing a function that * initializes the worklist. * * @author Martin Odersky * @version 1.0 * @see <a href="icode/Linearizers.html" target="contentFrame">scala.tools.nsc.backend.icode.Linearizers</a> */trait WorklistAlgorithm { type Elem type WList <: MutableList[Elem] val worklist: WList /** * Run the iterative algorithm until the worklist * remains empty. The initializer is run once before * the loop starts and should initialize the worklist. * * @param initWorklist ... */ def run(initWorklist: => Unit) = { initWorklist while (!(worklist.length == 0)) processElement(dequeue); } /** * Process the current element from the worklist. */ def processElement(e: Elem): Unit /** * Remove and return the first element to be processed from the worklist. */ def dequeue: Elem}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?