c++中树的拷贝构造函数的迭代实现
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++中树的拷贝构造函数的迭代实现相关的知识,希望对你有一定的参考价值。
具体思想是通过遍历目标树,保存对应的左右孩子节点位置。以按顺序拷贝对应位置的内容。
这里用先序遍历的原因是为了当要取等待拷贝的节点的左右孩子的位置,可以保证此节点存在。避免访问NULL使程序跳出。
- template<typename T>
- inline BinTree<T>::BinTree(BinTree & binTree)
- {
- BinNodePosi(T) otherTreeNode;
- stack<BinNodePosi(T)>otherBinNodeStack;
- BinNode<T>** selfTreeNode;
- stack<BinNode<T>**>selfBinNodeStack;
- selfBinNodeStack.push(&_root);
- otherBinNodeStack.push(binTree._root);
- while (!otherBinNodeStack.empty())
- {
- selfTreeNode = selfBinNodeStack.top(); selfBinNodeStack.pop();
- otherTreeNode = otherBinNodeStack.top(); otherBinNodeStack.pop();
- *selfTreeNode = new BinNode<T>(otherTreeNode->data, otherTreeNode->parent);
- if (otherTreeNode->rc)
- {
- otherBinNodeStack.push(otherTreeNode->rc);
- selfBinNodeStack.push(&((*selfTreeNode)->rc));
- }
- if (otherTreeNode->lc)
- {
- otherBinNodeStack.push(otherTreeNode->lc);
- selfBinNodeStack.push(&((*selfTreeNode)->lc));
- }
- }
- }
以上是关于c++中树的拷贝构造函数的迭代实现的主要内容,如果未能解决你的问题,请参考以下文章