This commit is contained in:
Macko 2024-04-18 15:33:36 +02:00
parent 3449fce81e
commit 7448b7335b

View File

@ -4,6 +4,12 @@
// Deklarace proměnné sorted_index
static int sorted_index;
// Deklarace funkce insert
node_t* insert(node_t *node, int data);
// Deklarace funkce inorder_traversal
void inorder_traversal(node_t *node, int *sorted);
// Definice funkce insert
node_t* insert(node_t *node, int data) {
if (node == NULL) {