加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

php遍历树的常用方法汇总

发布时间:2020-12-13 02:40:58 所属栏目:PHP教程 来源:网络整理
导读:《:php遍历树的常用方法汇总》要点: 本文介绍了:php遍历树的常用方法汇总,希望对您有用。如果有疑问,可以联系我们。 PHP学习 本篇章节讲解php遍历树的常用办法.供大家参考研究.具体如下: 一、递归的深度优先的算法: ?phpdefine('DS',DIRECTOR

《:php遍历树的常用方法汇总》要点:
本文介绍了:php遍历树的常用方法汇总,希望对您有用。如果有疑问,可以联系我们。

PHP学习本篇章节讲解php遍历树的常用办法.分享给大家供大家参考.具体如下:

一、递归的深度优先的算法:


<?php
define('DS',DIRECTORY_SEPARATOR);
function rec_list_files($from = '.')
{
  if(!is_dir($from)) {
    return array();
  }
  $files = array();
  if($dh = opendir($from))
  {
    while(false !== ($file = readdir($dh))) {
      if($file == '.' || $file == '..') {
        continue;
      }
      $path = $from . DS . $file;
       
      if (is_file($path)) {
        $files[] = $path;
      }
      $files = array_merge($files,rec_list_files($path));
    }
    closedir($dh);
  }
  return $files;
}
function profile($func,$trydir)
{
  $mem1 = memory_get_usage();
  echo '<pre>----------------------- Test run for '.$func.'() ';
  flush();
  $time_start = microtime(true);
  $list = $func($trydir);
  //print_r($list);
  $time = microtime(true) - $time_start;
  echo 'Finished : '.count($list).' files</pre>';
  $mem2 = memory_get_peak_usage();
  printf('<pre>Max memory for '.$func.'() : %0.2f kbytes Running time for '.$func.'() : %0.f s</pre>',($mem2-$mem1)/1024.0,$time);
  return $list;
}
profile('rec_list_files',"D:wwwserver");
?>

二、递归的深度优先的算法(用了一个栈来实现)


<?php
define('DS',DIRECTORY_SEPARATOR);
function deep_first_list_files($from = '.')
{
  if(!is_dir($from)) {
    return false;
  }
  $files = array();
  $dirs = array($from);
  while(NULL !== ($dir = array_pop($dirs))) {
    if( $dh = opendir($dir)) {
      while( false !== ($file = readdir($dh))) {
        if($file == '.' || $file == '..') {
          continue;
        }
        $path = $dir . DS . $file;
        if(is_dir($path)) {
          $dirs[] = $path;
        } else {
          $files[] = $path;
        }
      }
      closedir($dh);
    }
  }
  return $files;
}
function profile($func,$time);
  return $list;
}
profile('deep_first_list_files',"D:wwwserver");
?>

三、非递归的广度优先算法(用了一个队列来实现)


<?php
define('DS',DIRECTORY_SEPARATOR);
function breadth_first_files($from = '.') {
  $queue = array(rtrim($from,DS).DS);// normalize all paths
  $files = array();
  while($base = array_shift($queue )) {
    if (($handle = opendir($base))) {
      while (($child = readdir($handle)) !== false) {
        if( $child == '.' || $child == '..') {
          continue;
        }
        if (is_dir($base.$child)) {
          $combined_path = $base.$child.DS;
          array_push($queue,$combined_path);
        } else {
          $files[] = $base.$child;
        }
      }
      closedir($handle);
    } // else unable to open directory => NEXT CHILD
  }
  return $files; // end of tree,file not found
}
function profile($func,$time);
  return $list;
}
profile('breadth_first_files',"D:wwwserver");
?>

希望本文所述对大家的php程序设计有所赞助.

《:php遍历树的常用方法汇总》是否对您有启发,欢迎查看更多与《:php遍历树的常用方法汇总》相关教程,学精学透。编程之家 52php.cn为您提供精彩教程。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读