
二叉树
文章平均质量分 51
bxyill
这个作者很懒,什么都没留下…
展开
-
【100题】二叉树的层序遍历(广度优先遍历)
#include #include using namespace std;//树结构struct BTreeNode{ int m_nValue; BTreeNode *m_pLeft; BTreeNode *m_Right;};//层序遍历二叉树,即广度优先。void Print(BTreeNode *pNode){ if(!pNode) { return转载 2012-07-21 14:50:17 · 2858 阅读 · 4 评论 -
【二叉树遍历】中序------非递归
#include #include using namespace std;//树结构struct BTreeNode{ int m_nValue; BTreeNode *m_pLeft; BTreeNode *m_Right;};void visit(BTreeNode *n){ coutm_nValue<<" ";}//非递归中序遍历,利用栈实现void InO转载 2012-08-30 11:06:01 · 833 阅读 · 0 评论 -
【100题】二叉排序树转成双向链表----中序遍历法
#include #include using namespace std;struct BSTreeNode{ int m_nValue; // value of node BSTreeNode *m_pLeft; // left child of node BSTreeNode *m_pRight; // right child of node};typed转载 2012-07-15 17:45:19 · 753 阅读 · 0 评论 -
【100题】二叉树中找出和为某一值的所有路径
//在二叉树中找出和为某一值的所有路径#include #include using namespace std;//树结构struct BTreeNode{ int m_nValue; BTreeNode *m_pLeft; BTreeNode *m_pRight;}*BiTree;//按照先序创建二叉树,0表示空BTreeNode *Create(){ i转载 2012-07-17 08:15:52 · 2087 阅读 · 0 评论 -
【笔试题】一种树形结构--递归赋值(。。。)
问题描述:现在有这样一种树型结构。初始化如下:程序实现,将里面的level变成以下形式 这种树的特点是有多个根结点,根结点的Level值为0每个结点有多个父节点和子节点,该结点的Level值是父节点Level值中最大的那个再加1如此下去。。。以下函数由参数传入其中的一个结点。 void AssignLevel( CASObject *allOb原创 2013-03-30 19:48:51 · 2539 阅读 · 0 评论 -
【100题】判断一个序列是不是一个BST的后序遍历
//验证一个序列,是不是某个二叉查找树的后续遍历#include using namespace std;bool IsBST(int squence[], int length){ if(squence == NULL || length <= 0) { return false; } //最后一个值是根节点 int root = squence[length - 1];转载 2012-07-18 17:57:01 · 1237 阅读 · 1 评论 -
【100题】二叉树的镜像变换
//二叉树的镜像变换#include #include using namespace std;//二叉树结构struct BTreeNode { int m_nValue; BTreeNode *m_pLeft; BTreeNode *m_pRight;};//递归实现void MirrorRecursively(BTreeNode *pNode){ if(!pN转载 2012-07-21 10:48:21 · 2152 阅读 · 0 评论 -
【二叉树遍历】有前序遍历 和 中序遍历 求 后序遍历
/*假设前序遍历为 adbgcefh, 中序遍历为 dgbaechf 前序遍历是先访问根节点,然后再访问子树的,而中序遍历则先访问左子树再访问根节点 那么把前序的 a 取出来,然后查找 a 在中序遍历中的位置就得到 dgb a echf 那么我们就知道 dgb 是左子树 echf 是右子树,因为数量要吻合 所以前序中相应的 dbg 是左子树 cefh 是右子树 然后就变成了一个递归的过转载 2013-01-27 10:34:03 · 738 阅读 · 0 评论 -
【二叉树遍历】先序---非递归实现
#include #include using namespace std;//树结构struct BTreeNode{ int m_nValue; BTreeNode *m_pLeft; BTreeNode *m_Right;};void visit(BTreeNode *n){ coutm_nValue<<" ";}//非递归先序遍历,方法1void PreOr转载 2012-08-26 19:13:03 · 1121 阅读 · 0 评论 -
【100题】二叉排序树转成双向链表
#include #include using namespace std;struct BSTreeNode{ int m_nValue; // value of node BSTreeNode *m_pLeft; // left child of node BSTreeNode *m_pRight; // right child of node};typed转载 2012-07-15 15:24:28 · 840 阅读 · 0 评论