當前位置:才華齋>設計>網頁設計>

php樹型類例項程式碼

網頁設計 閱讀(2.11W)

本文例項講述了PHP樹型類。分享給大家供大家參考。具體分析如下:

php樹型類例項程式碼

該例項原理簡單,學過資料結構的'一看就明白是什麼道理了,不過今天在使用時資料中出現了子節點id(71)小於父節點id(104).導致部分子節點沒被儲存入陣列,修改了一下,例項程式碼如下:

複製程式碼 程式碼如下:<?php

class tree

{

var $data = array();

var $child = array(-1=>array());

var $layer = array(-1=>-1);

var $parent = array();

var $num = array();

function setnode($id, $parent, $value,$num=0)

{

$parent = $parent ? $parent : 0;

$this->data[$id] = $value;

$this->num[$id] = $num;

if (!isset($this->child[$id])) $this->child[$id] = array();

$this->child[$parent][] = $id;

$this->parent[$id] = $parent;

if (!isset($this->layer[$parent]) && $parent == 0)

{

$this->layer[$id] = 0;

}

else

{

$this->layer[$id] = $this->layer[$parent] + 1;

}

}

function getlist(&$tree, $root= 0)

{

foreach ($this->child[$root] as $key=>$id)

{

$tree[] = $id;

if($this->child[$id]) $this->getlist($tree, $id);

}

}

function getvalue($id)

{

if($this->layer[$id]==0)

{

return $this->data[$id];

}

else

{

return $leftmar.$this->data[$id];

}

}

function getnum($id)

{

return $this->num[$id];

}

function getbitvalue($id)

{

return $this->data[$id];

}

function getlayer($id, $space = false)

{

return $space ? str_repeat($space, $this->layer[$id]) : $this->layer[$id];

}

function getparent($id)

{

return $this->parent[$id];

}

function getparents($id)

{

while ($this->parent[$id] != -1)

{

$id = $parent[$this->layer[$id]] = $this->parent[$id];

}

ksort($parent);

reset($parent);

return $parent;

}

function getchild($id)

{

return $this->child[$id];

}

function getchilds($id = 0)

{

$child = array($id);

$this->getlist($child, $id);

return $child;

}

function printdata()

{

return $this->layer;

}

}

?>

希望本文所述對大家的PHP程式設計有所幫助。