欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 人文社科 > 生活经验 >内容正文

生活经验

BST(binary search tree)类型题目需要用到的头文件binary_tree.h

发布时间:2023/11/27 生活经验 48 豆豆
生活随笔 收集整理的这篇文章主要介绍了 BST(binary search tree)类型题目需要用到的头文件binary_tree.h 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

下面是二叉搜索树需要用到的头文件binary_tree.h


#include <stdio.h>struct BinaryTreeNode{int value;BinaryTreeNode* pLeft;BinaryTreeNode* pRight;
};BinaryTreeNode* CreateBinaryTreeNode(int value){BinaryTreeNode* pNode = new BinaryTreeNode();pNode->value = value;pNode->pLeft = NULL;pNode->pRight = NULL;return pNode;
}void ConnectTreeNodes(BinaryTreeNode* pParent, BinaryTreeNode* pLeft, BinaryTreeNode* pRight){if(pParent != NULL){pParent->pLeft = pLeft;pParent->pRight = pRight;}
}void PrintTreeNode(BinaryTreeNode* pNode){if(pNode != NULL){printf("value of this node is: %d\n ", pNode->value);if(pNode->pLeft != NULL)printf("value of its left child is: %d \n", pNode->pLeft->value);elseprintf("left child is null. \n");if(pNode->pRight != NULL)printf("value of its right child is: %d \n", pNode->pRight->value);elseprintf("right child is null. \n");}else{printf("this node is null. \n");}printf("\n");
}void PrintTree(BinaryTreeNode* pRoot){PrintTreeNode(pRoot);if(pRoot != NULL){if(pRoot->pLeft != NULL)PrintTree(pRoot->pLeft);if(pRoot->pRight != NULL)PrintTree(pRoot->pRight);}
}void DestroyTree(BinaryTreeNode* pRoot){if(pRoot != NULL){BinaryTreeNode* pLeft = pRoot->pLeft;BinaryTreeNode* pRight = pRoot->pRight;delete pRoot;pRoot = NULL;DestroyTree(pLeft);DestroyTree(pRight);}
}


总结

以上是生活随笔为你收集整理的BST(binary search tree)类型题目需要用到的头文件binary_tree.h的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。