This commit is contained in:
Macko 2024-04-18 15:15:17 +02:00
parent 46d025cf6d
commit 7fa8f9b45b

View File

@ -42,21 +42,22 @@ int search(Node* root, int x) {
// Implementace funkce build_tree // Implementace funkce build_tree
void build_tree() { void build_tree() {
// Zde implementujte vytvoření stromu // Implementace funkce build_tree
} }
// Implementace funkce free_tree // Implementace funkce free_tree
void free_tree() { void free_tree() {
// Zde implementujte uvolnění paměti použité pro strom // Implementace funkce free_tree
} }
// Implementace funkce sorted_data // Implementace funkce sorted_data
void sorted_data() { void sorted_data() {
// Implementace funkce sorted_data
printf("Testovací funkce pro kontrolu správnosti řazení dat.\n"); printf("Testovací funkce pro kontrolu správnosti řazení dat.\n");
} }
int main() { int main() {
// Volání testů a jiné části kódu // Volání testů a jiné části kódu
sorted_data(); // Zavolání funkce sorted_data pro účely testování
return 0; return 0;
} }