Menu
Coddy logo textTech
flag Ar iconالعربيةdown icon

BinaryTree Class

الدرس 5 من 13 في دورة Binary Tree - سلسلة هياكل البيانات #3 على Coddy.

challenge icon

التحدي

سهل

قم بكتابة فئة BinaryTree تحتوي على منشئ (يقوم بتهيئة الجذر إلى null/None)، و getRoot، و setRoot.

جرّب بنفسك

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

جميع دروس Binary Tree - سلسلة هياكل البيانات #3