3183人加入学习
(2人评价)
C#编程-第六季-编程内功修炼-算法-宇宙最简单教程
价格 免费
该课程属于 Unity - A计划(一年有效期) 请加入后再学习

此处判断node.leftChild和node.rightChild的部分

[展开全文]
Edward_ · 2021-08-02 · 该任务已被删除 0

//2.有一个节点(左或者右)
            if (node.LeftChild == null && node.RightChild != null)
            {
                node.Data = node.RightChild.Data;
                node.LeftChild = node.LeftChild.LeftChild;
                node.RightChild = node.RightChild.RightChild;
                node.RightChild = null;
                return;
            }
            if (node.LeftChild != null && node.RightChild == null)
            {
                node.Data = node.LeftChild.Data;
                node.LeftChild = node.LeftChild.LeftChild;
                node.RightChild = node.RightChild.RightChild;
                node.LeftChild = null;
                return;
            }

[展开全文]
_萌新专家 · 2019-11-05 · 该任务已被删除 0

总结加学习

 

[展开全文]
富有诗意的男网名分 · 2019-09-24 · 该任务已被删除 0

G H D B I E F C A

 

[展开全文]
富有诗意的男网名分 · 2019-09-18 · 该任务已被删除 0

x= 

[展开全文]
富有诗意的男网名分 · 2019-09-18 · 该任务已被删除 0