会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
soul390
静有所思,学有所成。
博客园
首页
新随笔
联系
管理
订阅
2013年12月17日
二叉树遍历结果返回一个串
摘要: 方法inorderDisplay()返回一个串,这个串提供节点值的中序列表:1 public static String inorderDisplay(TNode t){2 String s = "";3 if( t != null){4 s += inorderDisplay(t.left);5 s += t.nodeValue + " ";6 s += inorderDisplay(t.right);7 }8 return s;9 }
阅读全文
posted @ 2013-12-17 21:06 soul390
阅读(163)
评论(0)
推荐(0)
编辑
公告