赞
踩
1.二叉搜索树(Binary Search Tree)
leetcode450.删除BST的结点
class Solution {
public TreeNode deleteNode(TreeNode root, int key) {
if (root == null) return null;
if (key < root.val) {
root.left = deleteNode(root.left, key)</
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。