Binary

data class Binary(operation: String, left: MST, right: MST) : MST

A node containing binary operation.

Constructors

Link copied to clipboard
fun Binary(operation: String, left: MST, right: MST)

Properties

Link copied to clipboard
val left: MST

the left operand.

Link copied to clipboard
val operation: String

the identifier of operation.

Link copied to clipboard
val right: MST

the right operand.

Sources

Link copied to clipboard