我写了一个二叉搜索树,它工作得很好,但我不确定我的程序是否释放了所有的内存。
这是我对树节点的定义
typedef struct node {
int val;
struct node *left, *right;
} nodeOfTree;
我写了这个函数来输出结果并释放所有节点,似乎答案是正确的但内存没有释放。
void outputAndDestroyTree(nodeOfTree *root) {
if (!root) {return;}
outputAndDestroyTree(root->left);
printf("%d ", root->val);
outputAndDestroyTree(root->right);
free(root); // I free this pointer, but after doing that, I can still access this pointer in the main() function
}
这是否意味着我无法在递归函数中释放一段记忆?谢谢~~~~~
更新:谢谢大家~