摘要: 思路 二叉搜索树的插入 TreeNode InsertRec(rootNode, key) = if rootNode == NULL, return new Node(key) if key >= rootNode.data, rootNode.rightChild = InsertRec(roo 阅读全文
posted @ 2018-02-25 10:45 xuyanran 阅读(350) 评论(0) 推荐(0) 编辑