角色:<...
前言:大家在bbs回帖时常常可以看到树形的回复形式。...根据存入数据的树状结构,由root的id逐层往下走;每到一个结点递归扫描该结点的子结点;
(3)打印时进行字符串拼接,故引入第三个递归参数:“level”;
数据准备:
create database bbs...;
use bbs;
create table article
(
id int primary key auto_increment,
pid int,
rootid int,
title varchar..., 1);
insert into article values (null, 9, 1, '护士是蚂蚁', '护士是蚂蚁', now(), 0);
java封装
package com.gdufe.bbs...Class.forName("com.mysql.jdbc.Driver");
String url = "jdbc:mysql://localhost/bbs |