Alessandra avatar

Node

drago18121996

Published: 26 Apr 2024 › Updated: 26 Apr 2024Node

Node

class Node {

public final char value;

public Node left;

public Node right;

public Node(char value) {

    this(value, null, null);

}

/\*\* For testing. \*/

Node(char value, Node left, Node right) {

    this.value = value;

    this.left = left;

    this.right = right;

}

}

Leave Node to:

Written by

Writer / Researcher

Read more #ita posts


Best Posts From Alessandra

We have not curated any of drago18121996's posts yet. But you can encourage our curation team to review posts by visiting them regularly and by referring other readers. Because we give priority to frequently read content.

More Posts From Alessandra