溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

利用php怎么實現(xiàn)一個無序樹功能

發(fā)布時間:2021-01-25 17:27:10 來源:億速云 閱讀:184 作者:Leah 欄目:開發(fā)技術(shù)

利用php怎么實現(xiàn)一個無序樹功能?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

php代碼如下:

<?php
/* 
用php寫的無序樹
 */
 class unorderedTree{
 // 節(jié)點id計數(shù)器
 protected $nodeId=0;
 // 樹的深度
 protected $depth=0;
 // 樹的節(jié)點數(shù),
 protected $nodesCount=0;
 // 樹的度 @todo: 使其發(fā)揮作用
 public $degree=" to be implent";
 // 根節(jié)點id
 // 由于樹有多種從根節(jié)點開始操作,不想每次遍歷樹到頂找root,用一個變量始終指向根節(jié)點
 protected $rootid=null;
 // 子節(jié)點集合, k-v 為 nodeid=>(stdclass)node
 // 一些樹的實現(xiàn)常常是采用節(jié)點和樹同一class,這里節(jié)點是使用 stdclass{ data, parent, id , childrenIds} ,因我認(rèn)為節(jié)點和樹應(yīng)為兩種對象,且stdclass要輕于樹的class
 // 節(jié)點格式說明: $this->nodes[nodeId] = new stdclass{ id ,parentId, childrenIds, data }
 // id: 節(jié)點id
 // parentId: 節(jié)點父節(jié)點id
 // childrenIds: 子節(jié)點的id 不想每次遍歷樹確定層次關(guān)系 
 // 注意: 節(jié)點中, #只保存其自身數(shù)據(jù)和其子節(jié)點id的集合#, 子節(jié)點的數(shù)據(jù)通過從樹 $tree->nodes[ $node->childrenIds[a_child_id] ] 訪問
 // data: 節(jié)點中包含的數(shù)據(jù),如節(jié)點名稱等屬性數(shù)據(jù)
 protected $nodes=array();
 // 用戶自定義訪問節(jié)點
 protected $userVisitFunction=null;
 /* 分組: 類的基本函數(shù) */
 // @todo: 構(gòu)造樹
 public function __construct(){
 }
 // @todo: 銷毀樹 
 public function __destruct(){
  unset($this->nodes) ;
 }
  //------------ 獲取數(shù)據(jù)類函數(shù)---------------
  // 獲取樹的深度,
  public function getTreeDepth(){
  return $this->depth;
  }
  // 獲取樹的節(jié)點數(shù)目 
  public function getCount(){
  return $this->NodesCount;
  }
  // 獲取樹的度 
  public function getDegree(){
  // @todo: 獲取樹的度(因為對度暫時沒什么需要就不實現(xiàn)了 )
  return $this->degree;
  }
  //獲取指定節(jié)點
  public function getNode($nodeId){
  if(isset($this->Nodes[$nodeId])){
   return $this->Nodes[$nodeId];
  }
  else{
   return false;
  }
  }
  // 獲取最新id
  public function getId(){
  return $this->nodeId;
  }
  //獲取指定節(jié)點高度
  public function getNodeHeight($nodeId){
  if( array_key_exists($nodeId, $this->nodes) ){
   // 此節(jié)點已在樹里,高度至少為1,每找到一個父節(jié)點+1
   $height=1;
   // 記錄此樹中已經(jīng)訪問過的節(jié)點, 用于防止節(jié)點構(gòu)造時互相parent導(dǎo)致此函數(shù)死循環(huán)且及時結(jié)束查找
   $visitedNodesIds=array();
   // 記錄當(dāng)前操作節(jié)點的id
   $cid=$nodeId;
   // 當(dāng)前節(jié)點的父節(jié)點必須存在于此樹中
   // 不用遞歸
   while( isset($cid) ) {
    if( !in_array($cid,$visitedNodesIds ) ){
     if( $this->rootid===$cid){ //到頂,返回 
      return $height;
     }
     $visitedNodesIds[]=$cid;
     $cid= $this->nodes[ $cid ]->parentId;
     $height++; 
    }
    else{
     return false;
    }
   }
   return false;
  }
  else{
   return false;
  }
  }
  //獲取根節(jié)點
  public function getRoot(){
  return (!is_null($this->rootid) ) && $this->nodes[$this->rootid];
  }
  //獲取指定節(jié)點和其所有子節(jié)點構(gòu)成的數(shù)組 
  //這是用于獲取子樹的一個關(guān)鍵基礎(chǔ)操作
  public function getSubNodes($nodeId){
  if(isset($this->nodes[$nodeId])){
   $result=array();
   $toVisitNodeIds=array();
   $toVisitedNodeIds[]=$nodeId; 
   $result[]=$this->nodes[$nodeId]->id;
   array_shift($toVisitedNodeIds); 
   $toVisitedNodeIds=array_merge( $toVisitedNodeIds, $this->nodes[$nodeId]->childrenIds);
   while(!empty($toVisitedNodeIds)){
    $toVisitNodeId=array_shift($toVisitedNodeIds);
    $result[]=$this->nodes[$toVisitNodeId]->id;
    $toVisitedNodeIds=array_merge( $toVisitedNodeIds, $this->nodes[$toVisitNodeId]->childrenIds);
   }
   return $result ;
  }
  else{
   return false;
  }
  } 
  //@todo: 獲取由指定節(jié)點和其所有子節(jié)點構(gòu)建的子樹
  public function getSubTree($nodeid){
  }
  //---------------- 數(shù)據(jù)更新 -----------------
  public function setId($nodeId){
   $this->nodeId=$nodeId;
   return $this;
  }
  // 創(chuàng)建不重復(fù)的(樹中未被使用的) 新id
  public function seekId(){
  $this->nodeId++;
  return $this->nodeId;
  }
 public function setVisitFunction($userFunction){
  $this->userVisitFunction=$userFunction;
  }
  //插入子節(jié)點,默認(rèn)為插在根節(jié)點下
  public function insertNode($parent_id=null , $data=null){
  //注意node不是class tree
  $node = new stdclass; 
  $node->data = $data;
  //樹的節(jié)點數(shù)增加
  $this->nodeCount++;
  // 分配節(jié)點id
  $this->seekId();
  $node->id =$this->getId();
  //插入根節(jié)點
  if( (is_null($parent_id)) && is_null($this->rootid)){
   $node->parentId = null;
   $node->childrenIds = array();
   $this->depth=1; 
   $this->rootid=$node->id;
   $this->nodes [$node->id]=$node;
   return $this;
  } 
  elseif( isset($this->nodes[$parent_id]) || is_null($parent_id) ){
  // 插在此樹已有節(jié)點下
   if(is_null($parent_id)){
    $parent_id=$this->rootid;
   }
   $node->parentId = $parent_id;
   $node->childrenIds = array();
   //更新樹的最大深度
   $depth=$this->getNodeHeight($parent_id);
   $this->depth=max($depth+1, $this->depth);
   $this->nodes[$parent_id]->childrenIds []= $node->id;
   $this->nodes [$node->id]=$node;
   return $this;
  }
  else{
   return $this; 
  }
  } 
  //insert node 的別名
  public function append($parent_id=null , $data=null){
  return $this->insertNode($parent_id,$data);
  }
  // --------------- 數(shù)據(jù)訪問 -----
  //廣度優(yōu)先遍歷節(jié)點的別名, 全名太長了
  public function b($nodeId=null){
  return $this->breadthTraversal($nodeId);
  }
  // 廣度優(yōu)先遍歷節(jié)點
  public function breadthTraversal($nodeId=null){
  if(is_null($this->rootid)){
   die("此樹為空樹,不可訪問");
  }
  else{
   //全部遍歷
   if(is_null($nodeId) || ( $this->rootid===$nodeId) ){
    $nodeId=$this->rootid;
   }
   $toVisitNodeIds=array();
   $toVisitedNodeIds[]=$nodeId; 
   $this->visit( $this->nodes[$nodeId]);
   array_shift($toVisitedNodeIds); 
   $toVisitedNodeIds=array_merge( $toVisitedNodeIds, $this->nodes[$nodeId]->childrenIds);
   while(!empty($toVisitedNodeIds)){
    $toVisitNodeId=array_shift($toVisitedNodeIds);
    $this->visit( $this->nodes[$toVisitNodeId]);
    $toVisitedNodeIds=array_merge( $toVisitedNodeIds, $this->nodes[$toVisitNodeId]->childrenIds);
   }
  }
  return $this;
  }
  //深度優(yōu)先的別名
  public function d($nodeId=null){
  return $this->depthTraversall($nodeId);
  }
  // 深度優(yōu)先遍歷
  // 和廣度優(yōu)先的不同實現(xiàn)只在于array_merge的順序不同而已 ( php array 忒好用啊忒好用 )
  public function depthTraversall($nodeId=null){
  if(is_null($this->rootid)){
   die("此樹為空樹,不可訪問");
  }
  else{
   //全部遍歷
   if(is_null($nodeId)){
    $nodeId=$this->rootid;
   }
   $toVisitNodeIds=array();
   $toVisitedNodeIds[]=$nodeId; 
   $this->visit( $this->nodes[$nodeId]);
   array_shift($toVisitedNodeIds); 
   $toVisitedNodeIds=array_merge( $this->nodes[$nodeId]->childrenIds, $toVisitedNodeIds );
   while(!empty($toVisitedNodeIds)){
    $toVisitNodeId=array_shift($toVisitedNodeIds);
    $this->visit( $this->nodes[$toVisitNodeId]);
    $toVisitedNodeIds=array_merge( $this->nodes[$toVisitNodeId]->childrenIds, $toVisitedNodeIds );
   }
  }
  return $this;
  }
  //訪問單個節(jié)點
  public function visit($node){
  if(is_null($this->userVisitFunction )){
   return $node->id;
  }
  else{
   return call_user_func($this->userVisitFunction,$node,$this);
  }
  }
 }
?>

看完上述內(nèi)容,你們掌握利用php怎么實現(xiàn)一個無序樹功能的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI