文件名称:preorder_tree_stack

  • 所属分类:
  • 数据结构常用算法
  • 资源属性:
  • [C/C++] [源码]
  • 上传时间:
  • 2016-04-17
  • 文件大小:
  • 1kb
  • 下载次数:
  • 0次
  • 提 供 者:
  • 大**
  • 相关连接:
  • 下载说明:
  • 别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容均来自于网络,请自行研究使用

二叉树非递归先序遍历,使用栈

一直往左走 root->left->left->left…->null,

由于是先序遍历,因此一遇到节点,便需要立即访问;

由于一直走到最左边后,需要逐步返回到父节点访问右节点,

因此必须有一个措施能够对节点序列回溯。

有两个办法:

1.用栈记忆:在访问途中将依次遇到的节点保存下来。由于节点出现次序与恢复次序是反序的,因此是一个先进后出结构,需要用栈。



2.节点增加指向父节点的指针:通过指向父节点的指针来回溯-Nonrecursive preorder binary tree, using the stack has been left to go root-> left-> left-> left ...-> null, as is the preorder, it encountered a node, we need immediate access as has come to the after the left, we need to gradually return to the parent node to access the right node, so there must be able to measure a sequence of nodes backtracking. There are two ways: 1. Stack Memory: The saved nodes sequentially encountered in the access way. Since the node order and restore order in reverse order, so that is a last-out structure, need to use the stack. 2. The node point increase pointer to the parent: by pointing a pointer to the parent node back
(系统自动生成,下载前可以参看下载内容)

下载文件列表





preorder_tree_stack.cpp

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度更多...
  • 请直接用浏览器下载本站内容,不要使用迅雷之类的下载软件,用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*主  题:
*内  容:
*验 证 码:

源码中国 www.ymcn.org