zhedahht / CodingInterviewChinese2

《剑指Offer:名企面试官精讲典型编程面试题》第二版源代码
Other
5.32k stars 2.17k forks source link

Utilities下,BinaryTree.h和BinaryTree.cpp中的DestroyTree()参数要加引用 #29

Open lixiang2017 opened 5 years ago

lixiang2017 commented 5 years ago

Utilities下,BinaryTree.h和BinaryTree.cpp中的void DestroyTree(BinaryTreeNode pRoot)参数要加引用,即改为void DestroyTree(BinaryTreeNode& pRoot)。 因为对指针有释放内存,并赋值为nullptr。只有加上引用,赋值才能生效。否则会成为野指针。

Michael-Xbins commented 1 year ago

不错