本文整理汇总了C++中NodePtr::SetAnc方法的典型用法代码示例。如果您正苦于以下问题:C++ NodePtr::SetAnc方法的具体用法?C++ NodePtr::SetAnc怎么用?C++ NodePtr::SetAnc使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NodePtr
的用法示例。
在下文中一共展示了NodePtr::SetAnc方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: AddNodeBelow
//------------------------------------------------------------------------------
// Add Node below Below. Doesn't update any clusters, weights, etc.
void Tree::AddNodeBelow (NodePtr Node, NodePtr Below)
{
NodePtr Ancestor = NewNode ();
Ancestor->SetChild (Node);
Node->SetAnc (Ancestor);
NodePtr q = Below->GetAnc ();
Internals++;
if (Node->IsLeaf())
Leaves++;
if (q == NULL || Below == q->GetChild())
{
Node->SetSibling (Below);
Ancestor->SetAnc (q);
Ancestor->SetSibling (Below->GetSibling());
Below->SetSibling (NULL);
Below->SetAnc (Ancestor);
if (q == NULL)
Root = Ancestor;
else
q->SetChild (Ancestor);
}
else
{
// Get left sibling of Below
NodePtr r = Below->LeftSiblingOf();
while (Below != r->GetSibling())
r = r->GetSibling();
Node->SetSibling (Below);
Ancestor->SetAnc (q);
Ancestor->SetSibling (Below->GetSibling());
Below->SetSibling (NULL);
Below->SetAnc (Ancestor);
r->SetSibling (Ancestor);
}
}
示例2: StarTree
//------------------------------------------------------------------------------
// Create a star tree with n leaves
void NTree::StarTree (int n)
{
Leaves = n;
Internals = 1;
Root = NewNode();
Root->SetWeight (n);
Root->SetDegree (n);
CurNode = NewNode();
CurNode->SetLeaf(true);
CurNode->SetLeafNumber(1);
CurNode->SetLabelNumber(1);
Root->SetChild (CurNode);
CurNode->SetAnc (Root);
// Remaining leaves
for (int i = 1; i < n; i++)
{
NodePtr q = NewNode ();
q->SetLeaf(true);
q->SetLeafNumber(i+1);
q->SetLabelNumber(i+1);
q->SetAnc (Root);
CurNode->SetSibling (q);;
CurNode = q;
}
MakeNodeList();
Update();
BuildLeafClusters ();
}
示例3: copyTraverse
//------------------------------------------------------------------------------
// This code needs Tree to be a friend of Node
void Tree::copyTraverse (NodePtr p1, NodePtr &p2) const
{
if (p1)
{
p2 = NewNode ();
p1->Copy (p2);
// Note the call to p2->child, not p2->GetChild(). Calling the field
// is essential because calling GetChild merely passes a temporary
// copy of the child, hence we are not actually creating a child of p2.
// We can access child directly by making Tree a friend of Node (see
// TreeLib.h).
copyTraverse (p1->GetChild(), p2->Child);
if (p2->GetChild())
p2->GetChild()->SetAnc (p2);
// Ensure we don't copy RootedAt sibling. If the sibling is NULL then
// we won't anyway, but this line ensures this for all cases.
if (p1 != CurNode)
copyTraverse (p1->GetSibling(), p2->Sib); // note sib
if (p2->GetChild ())
{
NodePtr q = p2->GetChild()->GetSibling();
while (q)
{
q->SetAnc (p2);
q = q->GetSibling();
}
}
}
}
示例4: MakeChild
//------------------------------------------------------------------------------
// Make a child of CurNode and make it CurNode
void Tree::MakeChild ()
{
NodePtr q = NewNode();
CurNode->SetChild(q);
q->SetAnc(CurNode);
CurNode->IncrementDegree();
CurNode = q;
Internals++;
}
示例5: MakeSibling
//------------------------------------------------------------------------------
// Make a sibling of CurNode and make CurNode the new node.
void Tree::MakeSibling ()
{
NodePtr q = NewNode ();
NodePtr ancestor = CurNode->GetAnc();
CurNode->SetSibling(q);
q->SetAnc(ancestor);
ancestor->AddWeight(CurNode->GetWeight());
ancestor->IncrementDegree();
CurNode = q;
}
示例6: Parse
//.........这里部分代码省略.........
token = p.NextToken ();
break;
} //BCO
else { //BCO. Will work when not dealing with a simmap tree.
f = atof (p.GetTokenAsCstr());
CurNode->SetEdgeLength (f);
CurNode->SetModelCategory(vector<double>(1,f)); //Added by BCO
CurNode->SetStateOrder(vector<int>(1,0)); //Added by BCO
CurNode->SetStateTimes(vector<double>(1,f)); //Added by BCO
EdgeLengths = true;
//std::cout<<endl<<"536 Current token is "<<p.GetTokenAsCstr()<<endl; //added by BCO
token = p.NextToken ();
} //BCO
break;
case SPACE:
case TAB:
case NEWLINE:
//std::cout<<endl<<"543 Current token is "<<p.GetTokenAsCstr()<<endl; //added by BCO
token = p.NextToken ();
break;
// The next node encountered will be a sibling
// of Curnode and a descendant of the node on
// the top of the node stack.
case COMMA:
q = NewNode();
CurNode->SetSibling (q);
if (stk.empty())
{
Error = errMISSINGLPAR;
state = stQUIT;
}
else
{
q->SetAnc (stk.top());
stk.top()->AddWeight (CurNode->GetWeight());
stk.top()->IncrementDegree ();
CurNode = q;
state = stGETNAME;
//std::cout<<endl<<"564 Current token is "<<p.GetTokenAsCstr()<<endl; //added by BCO
token = p.NextToken ();
}
break;
// The next node will be a child of CurNode, hence
// we create the node and push CurNode onto the
// node stack.
case LPAR:
Internals++;
stk.push (CurNode);
q = NewNode();
CurNode->SetChild (q);
q->SetAnc (CurNode);
CurNode->IncrementDegree ();
CurNode = q;
//std::cout<<endl<<"579 Current token is "<<p.GetTokenAsCstr()<<endl; //added by BCO
token = p.NextToken ();
state = stGETNAME;
break;
// We've finished ready the descendants of the node
// at the top of the node stack so pop it off.
case RPAR:
if (stk.empty ())
{
Error = errUNBALANCED;
state = stQUIT;
}
else
示例7: RemoveNode
NodePtr Tree::RemoveNode (NodePtr Node)
{
NodePtr result = NULL;
if (Node == Root)
{
if (Leaves == 1)
{
Root = NULL;
Node->SetAnc (NULL);
Leaves = Internals = 0;
}
return result;
}
NodePtr p;
NodePtr Ancestor = Node->GetAnc();
if (Ancestor->GetDegree() == 2)
{
// ancestor is binary, so remove node and its ancestor
if (Node->IsTheChild ())
p = Node->GetSibling();
else
p = Ancestor->GetChild();
NodePtr q = Ancestor->GetAnc();
p->SetAnc (q);
if (q != NULL)
{
if (Ancestor->IsTheChild())
q->SetChild (p);
else
{
NodePtr r = Ancestor->LeftSiblingOf ();
r->SetSibling (p);
}
p->SetSibling (Ancestor->GetSibling());
result = p;
}
else
{
// Ancestor is the root
Root = p;
p->SetSibling (NULL);
result = p;
}
delete Ancestor;
Internals--;
if (Node->IsLeaf())
Leaves--;
Node->SetAnc (NULL);
Node->SetSibling (NULL);
}
else
{
// polytomy, just remove node
NodePtr q;
if (Node->IsTheChild())
{
Ancestor->SetChild (Node->GetSibling());
q = Node->GetSibling ();
}
else
{
q = Node->LeftSiblingOf ();
q->SetSibling (Node->GetSibling ());
}
Node->SetSibling (NULL);
Node->SetAnc (NULL);
if (Node->IsLeaf())
Leaves--;
Ancestor->SetDegree (Ancestor->GetDegree() - 1);
result = q;
}
}