PHP基於非遞迴演算法實現先序、中序及後序遍曆二叉樹操作的樣本

來源:互聯網
上載者:User
這篇文章主要介紹了PHP基於非遞迴演算法實現先序、中序及後序遍曆二叉樹操作,結合執行個體形式分析了php採用非遞迴演算法對二叉樹進行先序、中序及後序遍曆操作的原理與具體實現技巧,需要的朋友可以參考下

本文執行個體講述了PHP基於非遞迴演算法實現先序、中序及後序遍曆二叉樹操作。分享給大家供大家參考,具體如下:

概述:

二叉樹遍曆原理如下:

針對所示二叉樹遍曆:

1. 前序走訪:先遍曆根結點,然後遍曆左子樹,最後遍曆右子樹。

ABDHECFG

2.中序遍曆:先遍曆左子樹,然後遍曆根結點,最後遍曆右子樹。

HDBEAFCG

3.後序遍曆:先遍曆左子樹,然後遍曆右子樹,最後遍曆根節點。

HDEBFGCA

實現方法:

先序遍曆:利用棧先進後出的特性,先訪問根節點,再把右子樹壓入,再壓入左子樹。這樣取出的時候是先取出左子樹,最後取出右子樹。

function preorder($root){ $stack = array(); array_push($stack, $root); while(!empty($stack)){  $center_node = array_pop($stack);  echo $center_node->value; // 根節點  if($center_node->right != null)   array_push($stack, $center_node->right); // 壓入右子樹  if($center_node->left != null)   array_push($stack, $center_node->left); // 壓入左子樹 }}

中序:需要從下向上遍曆,所以先把左子樹壓入棧,然後逐個訪問根節點和右子樹。

function inorder($root){ $stack = array(); $center_node = $root; while(!empty($stack) || $center_node != null){  while($center_node != null){   array_push($stack, $center_node);   $center_node = $center_node->left;  }  $center_node = array_pop($stack);  echo $center_node->value;  $center_node = $center_node->right; }}

後序:先把根節點存起來,然後依次儲存左子樹和右子樹。然後輸出。

function tailorder($root){ $stack = array(); $outstack = array(); array_push($$stack, $root); while($empty($stack)){  $center_node = array_pop($stack);  array_push($outstack, $center_node);  if($center_node->right != null)   array_push($stack, $center_node->right);  if($center_node->left != null)   array_push($stack, $center_node->left); } while($empty($outstack)){  $center_node = array_pop($outstack);  echo $center_node->value; }}

您可能感興趣的文章:

PHP使用兩個棧實現隊列功能的方法的講解

詳解PHP序列化和還原序列化原理的講解

基於 Swoole 的掃碼登入功能實現代碼的過程講解

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.