¡@

Home 

php Programming Glossary: recurse_tree

PHP Binary Tree Recursion Algorithm

http://stackoverflow.com/questions/5020738/php-binary-tree-recursion-algorithm

untested and most likely wrong but my first shot function recurse_tree data level 0 final array tmp array first check if data is array.. data foreach data as elm push data to the tmp array tmp recurse_tree elm level 1 not an array else push data to the final array... however according to the tree its level 2. flattened_tree recurse_tree data STEPS 1. called recurse_tree data array array 1 array 2..