Menu
Coddy logo textTech

BinaryTree Class

Lesson 5 of 13 in Coddy's Binary Tree - Data Structures Series #3 course.

challenge icon

Challenge

Easy

Write a class BinaryTree with a constructor (initializes the root to null/None), getRoot, and setRoot.

Try it yourself

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "binarytree.h"

int main() {
    BinaryTree bt;
    BinaryTree_init(&bt);
    char line[256];
    while (fgets(line, sizeof(line), stdin)) {
        line[strcspn(line, "\r\n")] = '\0';
        char* cmd = strtok(line, " \t");
        if (!cmd) continue;
        if (strcmp(cmd, "setRoot") == 0) {
            char* arg = strtok(NULL, " \t");
            Node* c = Node_new();
            Node_setValue(c, atoi(arg));
            BinaryTree_setRoot(&bt, c);
        }
        if (strcmp(cmd, "getRootValue") == 0) {
            printf("%d\n", Node_getValue(BinaryTree_getRoot(&bt)));
        }
    }
    return 0;
}

All lessons in Binary Tree - Data Structures Series #3