1. 首页
  2. 服务器应用
  3. 群集服务
  4. 《数据结构》树与二叉树.ppt

《数据结构》树与二叉树.ppt

上传者: 2020-12-15 23:20:00上传 PPT文件 2.23MB 热度 19次
实现算法(书P168算法5.11) public int getDepth(BiTreeNode T){ } if (T! =null) { } return 0; int lDepth = getDepth(T.getLchild; int rDepth = getDepth(T.getRchild; return 1 + (lDepth > rDepth ? lDepth : rDepth;
用户评论