我有
struct Node{
Node* father;
Node* left_son;
Node* right_son;
char content;
};
void build_tree(Node* node){
Node* left;
left->father=node; //segfault
}
void init(){
Node* root;
build_tree(root);
}
我在build_tree()
. 为什么?