#include #include #include typedef struct tree { int key;//datatype struct tree *left; struct tree *right; struct tree *parent; // необязательное поле } tree; //Вычисляем высоту дерева int heightTree(tree* p) { if (p == NULL) return 0; else { /* вычисляем высоту каждого поддерева */ int lheight = heightTree(p->left); int rheight = heightTree(p->right); if (lheight > rheight) return (lheight + 1); else return (rheight + 1); } } //Печатаем все узлы на уровне level void printCurrentLevel(tree* root, int level) { if (root == NULL) return; if (level == 1) printf("%d ", root->key); else if (level > 1) { //если поменять местами то будет обход справа на лево printCurrentLevel(root->left, level - 1); printCurrentLevel(root->right, level - 1); } } //функция печати void printBFS(tree* root) { int h = heightTree(root); for (int i = 1; i <= h; i++) printCurrentLevel(root, i); } void preorder(tree *root) { if(root == NULL) return; printf("%d ",root->key); if(root->left) preorder(root->left); if(root->right) preorder(root->right); } _Bool isValidBST(tree* root,tree *minNode,tree* maxNode) { if(!root) return 1; printf("root->key=%d minNode->key= %d maxNode->key%d \n",root->key,minNode->key,maxNode->key); if((minNode && root->key <= minNode->key) || (maxNode && root->key >= maxNode->key)) { printf("0\n"); return 0; } return isValidBST(root->left,minNode,root) && isValidBST(root->right,root,maxNode); } typedef enum {false=0,true=1} bool; bool isBST(tree* root) { static tree *prev = NULL; // traverse the tree in inorder fashion and keep track of prev node if (root) { if (!isBST(root->left)) return false; // Allows only distinct valued nodes if (prev != NULL && root->key <= prev->key) return false; prev = root; return isBST(root->right); } return true; } int main(void) { tree *tr = NULL; //переимновываем узлы в предыдущем дереве tr = calloc(1,sizeof(tree)); tr->key = 5; tr->right = calloc(1,sizeof(tree)); tr->right->key = 4; tr->left = calloc(1,sizeof(tree)); tr->left->key = 1; //добавляем узлы от 4 //~ tr->right->key = 4; tr->right->right = calloc(1,sizeof(tree)); tr->right->right->key = 6; tr->right->left = calloc(1,sizeof(tree)); tr->right->left->key = 3; //печатаем дерево printf("BFS (Breadth First Traversal)\n"); printBFS(tr); printf("\nPreorder\n"); preorder(tr); printf("\n"); printf("Is BST? %s\n",isBST(tr)?"YES":"NO"); return 0; }