🌈 搜索
📅  最后修改于: 2022-03-11 14:48:05.107000             🧑  作者: Mango
class Node { final T value; final List> children; Node(this.value, this.children); }