私は持っています
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()
ます。なんで?