search
HomeBackend DevelopmentPHP TutorialInfinite recursion tree display_PHP tutorial
Infinite recursion tree display_PHP tutorialJul 13, 2016 pm 05:53 PM
parsephptreeexhibitunlimitedTreeCommentalgorithmnodemenurecursionlimit

[php]
/**
* Infinite level (limited by the tail node description algorithm, see tree_parse comment for details) recursive menu
* author: selfimpr
* blog: http://blog.csdn.net/lgg201
* mail: lgg860911@yahoo.com.cn
​*/

define('MAX_NODES', 3); /* Maximum number of child nodes */
define('MAX_NODE_INDEX', MAX_NODES - 1); /* Maximum index value of child nodes */
define('NAME_FMT', 'name-%08d'); /* Node content output format string */

/* Tree node data structure */
define('K_ID', 'id');
define('K_NAME', 'name');
define('K_CHILD', 'children');

/* Output the assembly characters used in construction */
define('PREFIX_TOP',                                                                                                                                                                                                                                                                                       through define('PREFIX_BOTTOM', '┗'); /* The identifier of the last child node of each parent node */
define('PREFIX_MIDDLE', '┠'); /* Identifiers of all nodes that are not in the above two cases */
define('PREFIX_LINE', '┇'); /* The ligature of the ancestor node */
define('SPACE',             ' ');                                                                                                                                                                                                                         define('WIDE_SPACE', str_repeat(SPACE, 4)); /* Wide blank placeholder, in order to make the hierarchy of the tree clear */


/**
* data_build
* Construct a node
* @param mixed $id Node id
* @param mixed $is_leaf Whether it is a leaf
* @access public
* @return void
​*/
function node_build($id, $is_leaf = FALSE) {
Return array(
K_ID => $id,
K_NAME => sprintf(NAME_FMT, $id),
K_CHILD => $is_leaf ? NULL : array(),
);
}
/**
* tree_build
* Construct a tree (the number of child nodes of each node in the tree is determined by MAX_NODES)
* @param mixed $datas The tree reference to be returned
* @param mixed $id Starting ID
* @param mixed $level The level of the tree
* @access public
* @return void
​*/
function tree_build(&$datas, &$id, $level) {
If ( $level $is_leaf = $level == 1;
$i = -1;
$next_level = $level - 1;
while ( ++ $i $data = node_build($id++, $is_leaf);
If ( !$is_leaf )
Tree_build($data[K_CHILD], $id, $next_level);
         array_push($datas, $data);
}  
}

/**
* node_str
* Output a node’s own information
 * @param mixed $string 返回结果的字符串(引用传值)
 * @param mixed $data   节点数据
 * @access public
 * @return void
 */ 
function node_str(&$string, $data) { 
    $string .= sprintf(' %s[%d]', $data[K_NAME], $data[K_ID]); 

/**
* node_sign
* Output the glyph of a node
* @param mixed $string Return the string of the result (pass by value)
* @param mixed $level Current depth
* @param mixed $i The index (subscript) of the current node in the parent node
* @access public
* @return void
​*/ 
function node_sign(&$string, $level, $i) { 
    switch ( $i ) { 
        case 0: 
            $string .= $level == 0 ? PREFIX_TOP : PREFIX_MIDDLE; 
            break; 
        case MAX_NODE_INDEX: 
            $string .= PREFIX_BOTTOM; 
            break; 
        default: 
            $string .= PREFIX_MIDDLE; 
            break; 
    } 

/**
* node_prefix
* Output the prefix of a node
* @param mixed $string Return the string of the result (pass by value)
* @param mixed $level Current depth
* @param mixed $is_last Whether all ancestor nodes of the current node (including) have tail node tags
* @access public
* @return void
​*/ 
function node_prefix(&$string, $level, $is_last) { 
    if ( $level > 0 ) { 
        $i  = 0; 
        /* 前缀格式: "父级连线" ["宽空白符" "父级连线" ...] "宽空白符" */ 
        $string .= ($is_last & 1         while ( ++ $i             $string .= WIDE_SPACE . ($is_last & 1         $string .= WIDE_SPACE; 
    } 

/**
* node_out
* Output a node
* @param mixed $string Return the string of the result (pass by value)
* @param mixed $data The node data to be processed
* @param mixed $level Node depth
* @param mixed $i The index (subscript) of the node in the parent node
* @param mixed $is_last Whether all ancestor nodes of the current node (including) have tail node tags
* @access public
* @return void
​*/ 
function node_out(&$string, $data, $level, $i, $is_last) { 
    /* 处理前缀字符串: 祖先的连接符及空白 */ 
    node_prefix($string, $level, $is_last); 
    /* 处理本节点的标识符号 */ 
    node_sign($string, $level, $i); 
    /* 处理本节点数据信息 */ 
    node_str($string, $data); 
    /* 追加换行 */ 
    $string     .= "n"; 

/**
 * tree_parse 
 * 输出一棵树
 *  1. 由于使用了整型的$is_last作为祖先是否尾节点的标记, 所以最多支持PHP_INT_MAX的深度
 *  2. 如果需要扩展, 修正$is_last的数据类型及校验方法即可
 * @param mixed $string 返回结果的字符串(引用传值)
 * @param mixed $datas  要处理的树数据
 * @param int $level    当前处理的深度
 * @param int $is_last  当前深度所有祖先是否尾节点标记
 * @access public
* @return void
*/
function tree_parse(&$string, $datas, $level = 0, $is_last = 0) {
If ( !is_array($datas) || count($datas) $max_index = count($datas) - 1;
/* Process all nodes in this layer */
foreach ( $datas as $i => $data ) {
             /* Whether the current node and all ancestors are marked as tail nodes */
$tmp_is_last = $is_last /* Output the current node */
Node_out($string, $data, $level, $i, $tmp_is_last);
           /* If there are child nodes, recurse the child nodes */
If ( is_array($data[K_CHILD]) && !emptyempty($data[K_CHILD]) )
Tree_parse($string, $data[K_CHILD], $level + 1, $tmp_is_last);
}  
}

/* Calculate the actual number of nodes */
function n_node($n, $s) {
$sum = 0;
while ( $n > 0 )
$sum += pow($s, $n --);
Return $sum;
}
/* Calculate ruage time */
function ru_time($info, $type) {
Return floatval(sprintf('%d.%d', $info[$type . '.tv_sec'], $info[$type . '.tv_usec']));
}
/* Output resource usage */
function resource_usage($lv, $nodes, $cb, $ce, $mb, $me, $rb, $re) {
Printf("nresource usage[level: %d, node number: %d]: n%20s%0.6fsn%20s%0.6fsn%20s%0.6fsn%20s%d byten",
         $lv, $nodes,
'clock time: ', $ce - $cb,
        'system cpu: ',      ru_time($re, 'ru_stime') - ru_time($rb, 'ru_stime'), 
        'user cpu: ',       ru_time($re, 'ru_utime') - ru_time($rb, 'ru_utime'), 
'memory usage: ', $me - $mb);
}
/* Usage */
function usage($cmd) {
Printf("usage: n%s n", $cmd);
exit;
}

/* Test entry function */
function run() {
global $argc, $argv;

If ( $argc != 2 || intval($argv[1]) usage($argv[0]);


$datas = array();
$id = 1;
$string = '';
$level = intval($argv[1]);

/* Initial construction of test tree */
Tree_build($datas, $id, $level);

$clock_begin = microtime(TRUE);
$memory_begin = memory_get_usage();
$rusage_begin = getrusage();
/* Parse tree */
Tree_parse($string, $datas);
$rusage_end = getrusage();
$memory_end = memory_get_usage();
$clock_end = microtime(TRUE);

/* Output results */
echo $string . "n";

Resource_usage($level, n_node($level, MAX_NODES),
$clock_begin, $clock_end,
         $memory_begin, $memory_end, 
         $rusage_begin, $rusage_end);
}

/* Execute entry function */
run();
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: t
* End:
*/

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477981.htmlTechArticle[php] ?php /** * Infinite level (limited by the tail node description algorithm, see tree_parse comment for details) Recursive menu * author: selfimpr * blog: http://blog.csdn.net/lgg201 * mail: lgg860911@yahoo.com.cn...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
C++ lambda 表达式是否支持递归?C++ lambda 表达式是否支持递归?Apr 17, 2024 pm 09:06 PM

是的,C++Lambda表达式可以通过使用std::function支持递归:使用std::function捕获Lambda表达式的引用。通过捕获的引用,Lambda表达式可以递归调用自身。

在Java中递归地计算子字符串出现的次数在Java中递归地计算子字符串出现的次数Sep 17, 2023 pm 07:49 PM

给定两个字符串str_1和str_2。目标是使用递归过程计算字符串str1中子字符串str2的出现次数。递归函数是在其定义中调用自身的函数。如果str1是"Iknowthatyouknowthatiknow",str2是"know"出现次数为-3让我们通过示例来理解。例如输入str1="TPisTPareTPamTP",str2="TP";输出Countofoccurrencesofasubstringrecursi

递归程序在C++中找到数组的最小和最大元素递归程序在C++中找到数组的最小和最大元素Aug 31, 2023 pm 07:37 PM

我们以整数数组Arr[]作为输入。目标是使用递归方法在数组中找到最大和最小的元素。由于我们使用递归,我们将遍历整个数组,直到达到长度=1,然后返回A[0],这形成了基本情况。否则,将当前元素与当前最小或最大值进行比较,并通过递归更新其值以供后续元素使用。让我们看看这个的各种输入输出场景−输入 −Arr={12,67,99,76,32};输出 −数组中的最大值:99解释 &mi

如何解决Python的最大递归深度错误?如何解决Python的最大递归深度错误?Jun 24, 2023 pm 02:48 PM

Python是一门易学易用的编程语言,然而在使用Python编写递归函数时,可能会遇到递归深度过大的错误,这时就需要解决这个问题。本文将为您介绍如何解决Python的最大递归深度错误。1.了解递归深度递归深度是指递归函数嵌套的层数。在Python默认情况下,递归深度的限制是1000,如果递归的层数超过这个限制,系统就会报错。这种报错通常称为“最大递归深度错误

如何使用Vue表单处理实现表单的递归嵌套如何使用Vue表单处理实现表单的递归嵌套Aug 11, 2023 pm 04:57 PM

如何使用Vue表单处理实现表单的递归嵌套引言:随着前端数据处理和表单处理的复杂性不断增加,我们需要通过一种灵活的方式来处理复杂的表单。Vue作为一种流行的JavaScript框架,为我们提供了许多强大的工具和特性来处理表单的递归嵌套。本文将向大家介绍如何使用Vue来处理这种复杂的表单,并附上代码示例。一、表单的递归嵌套在某些场景下,我们可能需要处理递归嵌套的

如何在Linux中使用递归“ls”如何在Linux中使用递归“ls”Mar 20, 2024 am 10:03 AM

在Linux系统中,“ls”命令是一个非常有用的工具,它提供了对当前目录中文件和文件夹的简洁概述。通过“ls”命令,您可以快速查看文件和文件夹的权限、属性等重要信息。虽然“ls”命令是一个基本的命令,但是通过结合不同的子命令和选项,它可以成为系统管理员和用户的重要工具。通过熟练使用“ls”命令及其各种选项,您可以更高效地管理文件系统,快速定位所需文件,以及执行各种操作。因此,“ls”命令不仅可以帮助您了解当前目录结构,还可以提高您的工作效率。比如,在Linux系统中,通过使用带有递归选项的"ls

Go语言中的循环和递归的比较研究Go语言中的循环和递归的比较研究Jun 01, 2023 am 09:23 AM

注:本文以Go语言的角度来比较研究循环和递归。在编写程序时,经常会遇到需要对一系列数据或操作进行重复处理的情况。为了实现这一点,我们需要使用循环或递归。循环和递归都是常用的处理方式,但在实际应用中,它们各有优缺点,因此在选择使用哪种方法时需要考虑实际情况。本文将对Go语言中的循环和递归进行比较研究。一、循环循环是一种重复执行某段代码的机制。Go语言中主要有三

利用ThinkPHP6实现递归树结构利用ThinkPHP6实现递归树结构Jun 20, 2023 pm 02:48 PM

随着互联网的发展,各种网站和应用程序中都出现了树形结构的展示,例如分类目录、人员组织架构、权限管理等。在这些应用场景中,递归树结构已经成为了非常重要且实用的模型之一。ThinkPHP6是一种基于MVC模型的PHP开发框架,其拥有丰富的扩展库和优秀的性能,广受开发者的认可和使用,而在ThinkPHP6中实现递归树结构也变得更加方便了。下面,我们将介绍如何在Th

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.