Menu
Coddy logo textTech

BinaryTree Class

Coddy'nin İkili Ağaç - Veri Yapıları Serisi #3 kursunda ders 5 / 13.

challenge icon

Görev

Kolay

Bir yapıcı (kökü null/None olarak başlatan), getRoot ve setRoot metotlarına sahip bir BinaryTree sınıfı yazın.

Kendin dene

#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;
}

İkili Ağaç - Veri Yapıları Serisi #3 bölümündeki tüm dersler