FAL 量化風(fēng)控線條訓(xùn)練營第八期遠(yuǎn)程班
? ? ? ? ? node.setRight(new TreeNode(value));
? ? ? ? ? ? ? ? ? ?return true;
? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ?node = node.getRight();
? ? ? ? ? ?}
? ? ? ?}
? ? ? ?return false;
? ?}
? ?private TreeNode deleteNode(TreeNode root, int value) {
? ? ? ?if (root.val == value) {
? ? ? ? ? ?// remove
? ? ? ? ? ?if (root.getLeft() == null && root.getRight() == null) {
? ? ? ? ? ? ? ?// 刪除的節(jié)點(diǎn)是葉子節(jié)點(diǎn)
? ? ? ? ? ? ? ?return null;
? ? ? ? ? ?} else if (root.getLeft() == null) {
? ? ? ? ? ? ? ?// 刪除節(jié)點(diǎn)的左節(jié)點(diǎn)是 null
標(biāo)簽: