The Algorithms logoThe Algorithms
About
package prototype
type nodeInterface interface {
	print(string)
	clone() nodeInterface
}

nodeInterface

a