树(数据结构与算法 - 8)
原文英文,约1500词,阅读约需6分钟。发表于: 。Tree is a hierarchical data structure that consists of nodes connected by edges. It is a non-linear structure, which means that unlike arrays, linked lists, stacks, or queues, elements are not...
树是一种层次结构,由节点和边组成,包含根节点、父节点、子节点、叶节点和子树等概念。树的类型有完全二叉树、满二叉树和平衡二叉树。AVL树是一种自平衡二叉搜索树,保持子树高度差不超过1。堆是用于实现优先队列的特殊二叉树。二叉搜索树支持插入、搜索和删除操作。树的遍历方式包括中序、前序和后序遍历。