当前位置: 首页>>代码示例>>C++>>正文


C++ BSTNode::ancestralSuccessor方法代码示例

本文整理汇总了C++中BSTNode::ancestralSuccessor方法的典型用法代码示例。如果您正苦于以下问题:C++ BSTNode::ancestralSuccessor方法的具体用法?C++ BSTNode::ancestralSuccessor怎么用?C++ BSTNode::ancestralSuccessor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BSTNode的用法示例。


在下文中一共展示了BSTNode::ancestralSuccessor方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: ancestralSuccessor

 /** Return the inorder ancestral successor of this BSTNode in a BST, or
  *  0 if none.
  *  PRECONDITION:this BSTNode is a node in a BST.
  *  POSTCONDITION:  the BST is unchanged.
  *  RETURNS: the BSTNode that is the inorder ancestral successor of this
  *  BSTNode, or 0 if there is none.
  */
 BSTNode<Data>* ancestralSuccessor() {
     /* Find and return a successor that is an ancestor, if it exists. */
     if (parent==NULL) {
         return NULL;
     } else if (this==parent->right) {
         return parent->ancestralSuccessor();
     } else {
         return parent;
     }
 }
开发者ID:ariaarasteh,项目名称:PA1,代码行数:17,代码来源:BSTNode.hpp

示例2: successor

 BSTNode<Data>* successor() {
     /* Determine if the right child or parent is successor. If neither, and
        parent exists, find out if one of the parents ancestors is the successor.
        If no successor exists, return 0. */
     if (right!=NULL) {
         return right->leftmostNode();
     } else if (parent==NULL) {
         return NULL;
     } else if (this==parent->left) {
         return parent;
     } else {
         return parent->ancestralSuccessor();
     }
 }
开发者ID:ariaarasteh,项目名称:PA1,代码行数:14,代码来源:BSTNode.hpp


注:本文中的BSTNode::ancestralSuccessor方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。