我需要帮助基于二叉树以文本形式实现简单的网站结构 - 每个新的“页面”都有一个父节点和两个子节点。从家庭开始,设计是将第一个“页面”添加到左手节点,然后将具有home作为父节点的后续页面添加到该节点的右节点,所有这些页面也链接到作为父节点的home。对于子类别也是如此 - 即添加一个带有父“店铺”的页面应向下搜索,直到找到商店页面然后添加到左侧,如果它是第一个从该节点添加权利以用于具有相同父级的后续页面。 / p>
以下是节点,网站和网页类的代码。我很确定我的问题在于添加页面的非递归性,因为到目前为止运行代码会生成一个带有两个子节点的商店和主页的主页。然后所有其他节点都为空。另外reall新闻应该被添加到商店的正确节点而不是ome但是我有点难过如何做到这一点....
public class Site
{
public class PageNode
{
private Page page;
private PageNode firstchild;
private PageNode parent;
private PageNode nextsibling;
public PageNode()
{
this.firstchild = null;
this.parent = null;
this.nextsibling = null;
}
public PageNode(String PageName)
{
this.firstchild = null;
this.parent = null;
this.nextsibling = null;
}
public String toString()
{
return ""+page;
}
}
private PageNode currentPage;
private PageNode homePage;
public Site()
{
this.homePage=new PageNode();
this.homePage.page=new Page("Home");
this.currentPage=this.homePage;
PageNode shops=addPage("Shops",this.homePage);
addPage("News",this.homePage);
PageNode products=addPage("Products",this.homePage);
addPage("Paisley",shops);
addPage("Hamilton",shops);
PageNode kitchen=addPage("Kitchen",products);
addPage("Bedroom",products);
addPage("Kettles",kitchen);
addPage("Cookers",kitchen);
addPage("Toasters",kitchen);
}
public PageNode addPage(String PageName)
{
this.currentPage=new PageNode();
this.currentPage.page=new Page(PageName);
PageNode ParentNode=new PageNode();
ParentNode.page=currentPage.page;
if (this.homePage==null)
this.homePage=ParentNode;
else
ParentNode=this.addPage(PageName,ParentNode);
return ParentNode;
}
private PageNode addPage(String PageName, PageNode ParentNode)
{
ParentNode = new PageNode();
ParentNode.page=new Page(PageName);
if (this.currentPage.page.compareTo(ParentNode.page)==0)
{
System.out.println("attempt to insert a duplicate");
}
else
if (ParentNode.page.compareTo(currentPage.page)<0)
if(currentPage.firstchild == null)
{
currentPage.firstchild=ParentNode;
ParentNode.firstchild = new PageNode();
ParentNode.firstchild.page = new Page(PageName);
}
else if(currentPage.nextsibling == null)
{
currentPage.nextsibling=ParentNode;
ParentNode.nextsibling = new PageNode();
ParentNode.nextsibling.page = new Page(PageName);
}
return ParentNode;
}
public void displayCurrentPage()
{
if (this.homePage!=null)
{
this.displayBranches(this.homePage);
}
else
System.out.println("tree is empty");
}
private void displayBranches(PageNode ParentNode)
{
if (ParentNode!=null)
{
System.out.println(ParentNode.page+" ");
System.out.print(" left: ");
if (ParentNode.firstchild!=null)
System.out.println(ParentNode.firstchild.page);
else
System.out.println("null");
System.out.print(" right: ");
if (ParentNode.nextsibling!=null)
System.out.println(ParentNode.nextsibling.page);
else
System.out.println("null");
displayBranches(ParentNode.firstchild);
displayBranches(ParentNode.nextsibling);
}
}
和页面类
public class Page implements Comparable
{
private String page;
public Page (String PageName)
{
page = PageName;
}
public String getPage()
{
return page;
}
public int compareTo(Object otherObject)
{
int result=((Page)otherObject).page.compareTo(this.page);
return result;
}
public String toString()
{
return ""+page;
}
}
请注意 - 公共站点()由导师实施,因此休息需要符合其中的地址调用。
答案 0 :(得分:0)
您需要一个目录树而不是二叉搜索树
如果您像这样构建节点
,这将更加清晰public class PageNode
{
private Page page;
private PageNode child;
private PageNode parent;
private PageNode nextSibling;
//...
}