您好,欢迎光临本网站![请登录][注册会员]  
文件名称: 一些树的结构备忘
  所属分类: 其它
  开发工具:
  文件大小: 1mb
  下载次数: 0
  上传时间: 2019-07-29
  提 供 者: weixin_********
 详细说明:NULL 博文链接:https://richyzhang.iteye.com/blog/803019Binary Search and AVL Trees Lawrence M. brown Search Algorithm: Tree Search(k, Input: A search key, k, and a node, v, of a binary search tree, T' Output: The node storing the key, k, or an external node(after all internal nodes with keys k and before all internal nodes with keys > k) if v is an external node then return v find(25) find(76) ifk=key(ν)then∥ node found 44 return y 88 else if k< key( v)then 65 return Tree Search( k, Tleft Child(v)) 28 82 else∥/k>key(v) 76 return Tree Search( k, Tright Child(v)) 20 For this algorithm, the returned node requires one final test for an external node( v is External) 25 September, 1999 3 Binary Search and AVL Trees Lawrence M. brown Insert into a Binary search Tree Algorithm: insert( key-element pair Start by calling Tree Seach(k, T root)on T. Let w be the returned node If w is an external node, then no Item with key k is stored in T Call T.expandexternal( w) Store new Item(k, e)at node(position)w If w is an internal node, then another Item with key k is stored at w Call TreeSearch( k, rightChild( w))and apply the algorithm to the returned node. Duplicates tend to the right 25 September, 1999 Binary Search and AVL Trees Lawrence M. brown Insert into a Binary Search Tree Example Insert Item with key 78 44 28 8 80 8D 78 expandExternalo A new Item will always be added at the bottom"of the search tree, T' Each node visit costs O(1), thus, in the worst case, insert runs in O(h) the height of the tree, t 25 September, 1999 Binary Search and AVL Trees Lawrence M. brown Removal from a Binary Search Tree TreeScarch (k, T root()is called to locate the node w with key k Two complicated situations may arise Case I: The node w is internal with a single leaf child z Call removeAbove External(z)to replace w with the sibling o 44 、双 82 80 80 78 25 September, 1999 6 Binary Search and AVL Trees Lawrence M. brown Removal from a Binary Search Tree Case l: both children of w are internal nodes Save the element stored at w into a temporary variable Find the first internal node, y, in an inorder traversal of the right subtree of w Replace the contents of w with the contents of y Call remove Above External(x)on the left child of Return the element previously stored in w 44 88 76 29 54 82 76 y (a) 25 September, 1999 Binary Search and AVL Trees Lawrence M. brown Time Complexity of Binary Search Tree Searching, insertion and removal of a node in a binary search Tree is O(h), where h is the of the tree height of the tree is n, then the worst-case running time for Insertion removal is o(n)--no better than a To prevent the worst-case running time, a re-balancing scheme is needed to yield a tree that maintains the smallest possible height 25 September, 1999 8 Binary Search and AVL Trees Lawrence M. brown AVL Freest An AVL Tree is a binary tree such that for every internal node v of T, the heights of the children of v can differ by at most 1 44 17 78 32 50 88 48) 62 Every of an avl tree is an av tree del'son el’ skii and l 25 September, 1999 Binary Search and AVL Trees Lawrence M. brown insertion in an avl tree a binary search tree T is balanced if for every node v, the height of v's children differ by at most one Inserting a node into an aVL tree involves performing an expandExternal( w)on T, which may change the height of some nodes in T If an insertion causes T to become unbalanced, then travel up the tree from the newly created node, w, until the first node is reached, x, that has an unbalanced grandparent, z. Note that x could be equal to w Height(y)=Height( sibling (y))+ 2 2 x → Expand external at w 25 September, 1999 10
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: 一些树的结构备忘
 输入关键字,在本站1000多万海量源码库中尽情搜索: