人人做人人澡人人爽欧美,国产主播一区二区,久久久精品五月天,羞羞视频在线观看免费

當前位置:蘿卜系統下載站 > 技術開發教程 > 詳細頁面

完成樹狀結構的2種辦法

完成樹狀結構的2種辦法

更新時間:2022-08-08 文章作者:未知 信息來源:網絡 閱讀次數:


實現樹狀結構的兩種方法1。遞歸法
遞歸是指在函數中顯式的調用它自身。
利用遞歸法實現樹狀結構的特點是寫入數據速度較快,顯示速度較慢(在樹的分支/層次較多的情況下尤其明顯)。適用與寫入數據量大,樹的結構復雜的情況下。
數據結構(以mysql為例)

代碼:--------------------------------------------------------------------------------
CREATE TABLE `tree1` (
  `id` tinyint(3) unsigned NOT NULL auto_increment,
  `parentid` tinyint(3) unsigned NOT NULL default '0',
  `topic` varchar(50) default NULL,
  PRIMARY KEY  (`id`),
  KEY `parentid` (`parentid`)
) TYPE=MyISAM;

INSERT INTO `tree1` (`id`, `parentid`, `topic`) VALUES
  (1,0,'樹1'),
  (2,0,'樹2'),
  (3,0,'樹3'),
  (4,2,'樹2-1'),
  (5,4,'樹2-1-1'),
  (6,2,'樹2-2'),
  (7,1,'樹1-1'),
  (8,1,'樹1-2'),
  (9,1,'樹1-3'),
  (10,8,'樹1-2-1'),
  (11,7,'樹1-1-1'),
  (12,11,'樹1-1-1-1');
--------------------------------------------------------------------------------


字段說明
id,記錄的id號
parentid,記錄的父記錄id(為0則為根記錄)
topic,記錄的顯示標題

顯示程序

順序樹:

PHP代碼:--------------------------------------------------------------------------------

<?
/* 數據庫連接 */
mysql_connect();
mysql_select_db('tree');

/* 樹狀顯示的遞歸函數 */
function tree($parentid = 0) {
    /*執行sql查詢,獲取記錄的標題和id*/
    $sql = "select topic,id from tree1 where parentid = $parentid order by id asc";
    $rs = mysql_query($sql);
    /* 縮進*/
    echo("<ul>");
    while($ra = mysql_fetch_row($rs)) {
        /* 顯示記錄標題 */
        echo('<li>'.$ra[0].'</li>');
        /* 遞歸調用 */
        tree($ra[1]);
    }
    echo("</ul>");
}
tree();
?>

--------------------------------------------------------------------------------


逆序樹:

PHP代碼:--------------------------------------------------------------------------------

<?
/* 數據庫連接 */
mysql_connect();
mysql_select_db('tree');

/* 樹狀顯示的遞歸函數 */
function tree($parentid = 0) {
    /*執行sql查詢,獲取記錄的標題和id*/
    $sql = "select topic,id from tree1 where parentid = $parentid order by id desc";
    $rs = mysql_query($sql);
    /* 縮進*/
    echo("<ul>");
    while($ra = mysql_fetch_row($rs)) {
        /* 顯示記錄標題 */
        echo('<li>'.$ra[0].'</li>');
        /* 遞歸調用 */
        tree($ra[1]);
    }
    echo("</ul>");
}
tree();
?>

--------------------------------------------------------------------------------


插入數據程序

PHP代碼:--------------------------------------------------------------------------------

<?
/* 數據庫連接 */
mysql_connect();
mysql_select_db('tree');
$sql = "insert into tree (topic,parentid) values('樹3-1',3);";
mysql_query($sql);
?>

--------------------------------------------------------------------------------


2。排序字段法
此方法是通過在數據結構中增加一個標志記錄在整個樹中的順序位置的字段來實現的。特點是顯示速度和效率高。但在單個樹的結構復雜的情況下,數據寫入效率有所不足。而且順序排列時候,插入,刪除記錄的算法過于復雜,故通常用逆序排列。

數據結構(以mysql為例)

代碼:--------------------------------------------------------------------------------
CREATE TABLE `tree2` (
  `id` tinyint(3) unsigned NOT NULL auto_increment,
  `parentid` tinyint(3) unsigned NOT NULL default '0',
  `rootid` tinyint(3) unsigned NOT NULL default '0',
  `layer` tinyint(3) unsigned NOT NULL default '0',
  `orders` tinyint(3) unsigned NOT NULL default '0',
  `topic` varchar(50) default NULL,
  PRIMARY KEY  (`id`),
  KEY `parentid` (`parentid`),
  KEY `rootid` (`rootid`)
) TYPE=MyISAM

INSERT INTO `tree2` (`id`, `parentid`, `rootid`, `layer`, `orders`, `topic`) VALUES
  (1,0,1,0,0,'樹1'),
  (2,0,2,0,0,'樹2'),
  (3,0,3,0,0,'樹3'),
  (4,2,2,1,2,'樹2-1'),
  (5,4,2,2,3,'樹2-1-1'),
  (6,2,2,1,1,'樹2-2'),
  (7,1,1,1,4,'樹1-1'),
  (8,1,1,1,2,'樹1-2'),
  (9,1,1,1,1,'樹1-3'),
  (10,8,1,2,3,'樹1-2-1'),
  (11,7,1,2,5,'樹1-1-1'),
  (12,11,1,3,6,'樹1-1-1-1');
--------------------------------------------------------------------------------


顯示程序

PHP代碼:--------------------------------------------------------------------------------

<?
/* 數據庫連接 */
mysql_connect();
mysql_select_db('tree');

/* 選出所有根記錄id */
$sql = "select id from tree2 where parentid = 0 order by id desc";
$rs = mysql_query($sql);
echo("<ul>");
$lay = 0;
while($ra = mysql_fetch_row($rs)) {
    echo("<ul>");
    /* 選出此樹所有記錄,并按orders字段排序 */
    $sql = "select topic,layer from tree2 where rootid = $ra[0] order by orders";
    $rs1 = mysql_query($sql);
    while($ra1 = mysql_fetch_row($rs1)) {
        /* 縮進顯示 */
        if($ra1[1]>$lay) {
            echo(str_repeat("<ul>",$ra1[1]-$lay));
        }elseif($ra1[1]<$lay) {
            echo(str_repeat("</ul>",$lay-$ra1[1]));
        }
        /* 記錄顯示 */
        //echo("$ra1[1]>$lay");
        echo("<li>$ra1[0]</li>");
        $lay = $ra1[1];
    }
    echo("</ul>");
}
echo("</ul>");
?>

--------------------------------------------------------------------------------


插入數據程序

PHP代碼:--------------------------------------------------------------------------------

<?
/* 數據庫連接 */
mysql_connect();
mysql_select_db('tree');

/* 插入根記錄 */
$sql = "insert into tree2 (topic) values ('樹5')";
mysql_query($sql);
$sql = "update tree2 set rootid = id where id = ".mysql_insert_id();
mysql_query($sql);

/* 插入子記錄 */
$parentid = 5;//父記錄id
/* 取出 根記錄id,父記錄縮進層次,父記錄順序位置 */
$sql = "select rootid,layer,orders from tree2 where id = $parentid";
list($rootid,$layer,$orders) = mysql_fetch_row(mysql_query($sql));
/* 更新插入位置后記錄的orders值 */
$sql = "update tree2 set orders = orders + 1 where orders > $orders";
mysql_query($sql);
/* 插入記錄 */
$sql = "insert into tree2 (rootid,parentid,orders,layer,topic) values ($rootid,$parentid,".($orders+1).",".($layer+1).",'樹2-1-1-2')";
mysql_query($sql);?>

溫馨提示:喜歡本站的話,請收藏一下本站!

本類教程下載

系統下載排行

網站地圖xml | 網站地圖html
主站蜘蛛池模板: 湖北省| 祁连县| 桐乡市| 阳信县| 阿克陶县| 大田县| 固始县| 宁明县| 县级市| 临潭县| 武清区| 怀集县| 靖安县| 金平| 莱阳市| 大兴区| 胶州市| 兴安盟| 阳朔县| 鹰潭市| 庆阳市| 富裕县| 大英县| 达日县| 兴化市| 嘉禾县| 蓝田县| 双辽市| 宁化县| 闵行区| 长乐市| 嘉禾县| 江源县| 松桃| 黄大仙区| 纳雍县| 澄迈县| 晋中市| 綦江县| 石泉县| 湖北省|