首页 > 开发 > PHP > 正文

php遍历树的常用方法汇总

2024-05-04 23:36:25
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php遍历树的常用方法,实例分析了php常用的三种遍历树的技巧,需要的朋友可以参考下

本文实例讲述了php遍历树的常用方法。分享给大家供大家参考。具体如下:

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

 

 
  1. <?php 
  2. define('DS', DIRECTORY_SEPARATOR); 
  3. function rec_list_files($from = '.'
  4. if(!is_dir($from)) { 
  5. return array(); 
  6. $files = array(); 
  7. if($dh = opendir($from)) 
  8. while(false !== ($file = readdir($dh))) { 
  9. if($file == '.' || $file == '..') { 
  10. continue
  11. $path = $from . DS . $file
  12.  
  13. if (is_file($path)) { 
  14. $files[] = $path
  15. $files = array_merge($files, rec_list_files($path)); 
  16. closedir($dh); 
  17. return $files
  18. function profile($func$trydir
  19. $mem1 = memory_get_usage(); 
  20. echo '<pre>----------------------- Test run for '.$func.'() '
  21. flush(); 
  22. $time_start = microtime(true); 
  23. $list = $func($trydir); 
  24. //print_r($list); 
  25. $time = microtime(true) - $time_start
  26. echo 'Finished : '.count($list).' files</pre>'
  27. $mem2 = memory_get_peak_usage(); 
  28. printf('<pre>Max memory for '.$func.'() : %0.2f kbytes Running time for '.$func.'() : %0.f s</pre>'
  29. ($mem2-$mem1)/1024.0, $time); 
  30. return $list
  31. profile('rec_list_files'"D:/www/server"); 
  32. ?> 

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

 

 
  1. <?php 
  2. define('DS', DIRECTORY_SEPARATOR); 
  3. function deep_first_list_files($from = '.'
  4. if(!is_dir($from)) { 
  5. return false; 
  6. $files = array(); 
  7. $dirs = array($from); 
  8. while(NULL !== ($dir = array_pop($dirs))) { 
  9. if$dh = opendir($dir)) { 
  10. while( false !== ($file = readdir($dh))) { 
  11. if($file == '.' || $file == '..') { 
  12. continue
  13. $path = $dir . DS . $file
  14. if(is_dir($path)) { 
  15. $dirs[] = $path
  16. else { 
  17. $files[] = $path
  18. closedir($dh); 
  19. return $files
  20. function profile($func$trydir
  21. $mem1 = memory_get_usage(); 
  22. echo '<pre>----------------------- Test run for '.$func.'() '
  23. flush(); 
  24. $time_start = microtime(true); 
  25. $list = $func($trydir); 
  26. //print_r($list); 
  27. $time = microtime(true) - $time_start
  28. echo 'Finished : '.count($list).' files</pre>'
  29. $mem2 = memory_get_peak_usage(); 
  30. printf('<pre>Max memory for '.$func.'() : %0.2f kbytes Running time for '.$func.'() : %0.f s</pre>'
  31. ($mem2-$mem1)/1024.0, $time); 
  32. return $list
  33. profile('deep_first_list_files'"D:/www/server"); 
  34. ?> 

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

 

 
  1. <?php 
  2. define('DS', DIRECTORY_SEPARATOR); 
  3. function breadth_first_files($from = '.') { 
  4. $queue = array(rtrim($from, DS).DS);// normalize all paths 
  5. $files = array(); 
  6. while($base = array_shift($queue )) { 
  7. if (($handle = opendir($base))) { 
  8. while (($child = readdir($handle)) !== false) { 
  9. if$child == '.' || $child == '..') { 
  10. continue
  11. if (is_dir($base.$child)) { 
  12. $combined_path = $base.$child.DS; 
  13. array_push($queue$combined_path); 
  14. else { 
  15. $files[] = $base.$child
  16. closedir($handle); 
  17. // else unable to open directory => NEXT CHILD 
  18. return $files// end of tree, file not found 
  19. function profile($func$trydir
  20. $mem1 = memory_get_usage(); 
  21. echo '<pre>----------------------- Test run for '.$func.'() '
  22. flush(); 
  23. $time_start = microtime(true); 
  24. $list = $func($trydir); 
  25. //print_r($list); 
  26. $time = microtime(true) - $time_start
  27. echo 'Finished : '.count($list).' files</pre>'
  28. $mem2 = memory_get_peak_usage(); 
  29. printf('<pre>Max memory for '.$func.'() : %0.2f kbytes Running time for '.$func.'() : %0.f s</pre>'
  30. ($mem2-$mem1)/1024.0, $time); 
  31. return $list
  32. profile('breadth_first_files'"D:/www/server"); 
  33. ?> 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表