gpt4 book ai didi

scala - 如何将元素排入可迭代队列,例如队列[列表[节点]]?

转载 作者:行者123 更新时间:2023-12-01 07:36:08 33 4
gpt4 key购买 nike

scala.collection.immutable.Queueenqueue 函数被重载。

def enqueue[B >: A](elem: B]): Queue[B]
def enqueue[B >: A](iter: Iterable[B]): Queue[B]

第一个签名允许您将单个项目添加到队列中,而后者允许您添加多个项目。

我正在研究一种图形搜索算法,并使用队列来跟踪我到目前为止所遍历的路径 (List[Node])。但是当我尝试对路径进行排队时,编译器假定我想使用具有可迭代签名的函数并抛出错误。

val path = List(Node(0), Node(1), Node(4))
val q: Queue[List[Node]] = Queue[List[Node]]().enqueue(path)
// Expression of type Queue[Product with Serializable] does not conform to expected type Queue[List[Node]]

我可以通过将路径包装在另一个列表中来解决这个问题,但这是强制的并且不太清楚。

val q: Queue[List[Node]] = Queue[List[Node]]().enqueue(List(path))
// compiles

有更好的方法吗?

编辑我还注意到 :+ 运算符仅用于对单个元素进行排队,我更喜欢它。

val q: Queue[List[Node]] = Queue[List[Node]]() :+ path

最佳答案

enqueue的类型参数可以更明确:

 q.enqueue[List[Node]](path)

应该适合你。

关于scala - 如何将元素排入可迭代队列,例如队列[列表[节点]]?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32417278/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com