这个月的全部文章
@kidultff

CentOS安装ClamAV杀毒

只需要简单的四步:首先添加epel源yum install -y epel-release yum -y update接着安装:yum install clamav-server clamav-data clamav-update clamav-filesystem clamav clamav-sc ...
  • 0
  • 0
@kidultff

二叉树的序列转换、二叉搜索树序列转换

前面说了那么多关于二叉树的,这篇来写个总结吧!主要是关于二叉树的序列转换。分别是:已知先序、中序,转后序;    已知先序、中序,转层序;            &nb ...
  • 0
  • 0
@kidultff

PAT-A 真题- 1099. Build A Binary Search Tree

原题干:A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:The left subtree of a node contains only nodes with keys less than the node's key.The right subtree of a node contains ...
  • 0
  • 1
@kidultff

PAT-A 真题- 1064. Complete Binary Search Tree

原题干:A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:The left subtree of a node contains only nodes with keys less than the node's key.The right subtree of a node contains ...
  • 0
  • 0
@kidultff

PAT-A 真题- 1066. Root of AVL Tree

原题干:An AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any time they differ by more than one, rebalancing is done to restore this ...
  • 0
  • 4