1package node
2
3type Node struct {
4	Id int
5}
6
7type NodeOrderedSet []Node
8