从品牌网站建设到网络营销策划,从策略到执行的一站式服务
templatevoid BinaryTree :: PrevOrderNoRec() { if (_root == NULL) { return; } stack s; s.push(_root); while (!s.empty()) { Node* top = s.top();//获取栈顶 cout << top->_data << " "; s.pop(); //右孩子入栈 if (top->_rightChild) { s.push(top->_rightChild); } //左孩子入栈 if (top->_leftChild) { s.push(top->_leftChild); } } cout << endl; } template void BinaryTree ::InOrderNoRec() { if (_root == NULL) { return; } Node* cur = _root; stack s; while (cur||!s.empty())//如果栈为空并且cur==NULL跳出循环 { //找到最左下方的节点访问 while (cur) { s.push(cur); cur = cur->_leftChild; } Node* top = s.top(); cout << top->_data << " "; s.pop(); //如果右子树不为空则按照中序遍历,重新找到最左下角的继续访问 if (top->_rightChild) { cur = top->_rightChild; } //如果右子树为空,则cur==NULL,不会再次进入循环,直接出栈访问 } cout << endl; } template void BinaryTree ::PosOrderNoRec() { if (_root == NULL) { return; } Node* cur = _root;//当前指针 Node* prev = NULL;//栈内的前驱指针 stack s; while (cur || !s.empty()) { //找到最左下角节点 while (cur) { s.push(cur); cur = cur->_leftChild; } Node* top = s.top(); //如果右子树为空,或者之前访问过则输出 if (top->_rightChild == NULL || prev == top->_rightChild) { cout << top->_data << " "; prev = top;//出栈之前更新prev s.pop(); } else { cur = top->_rightChild; } } cout << endl; }
成都网站建设公司地址:成都市青羊区太升南路288号锦天国际A座10层 建设咨询028-86922220
成都快上网科技有限公司-四川网站建设设计公司 | 蜀ICP备19037934号 Copyright 2020,ALL Rights Reserved cdkjz.cn | 成都网站建设 | © Copyright 2020版权所有.
专家团队为您提供成都网站建设,成都网站设计,成都品牌网站设计,成都营销型网站制作等服务,成都建网站就找快上网! | 成都网站建设哪家好? | 网站建设地图