c语言问题!急!! 50
typedefstructnode{char*data;intweight;boolend_of_key;structnode*left;structnode*equal...
typedef struct node {
char *data;
int weight;
bool end_of_key;
struct node * left;
struct node * equal;
struct node * right;
} node_t;
int main(int argc, char *argv[]) {
node_t* root = NULL;
int weight;
int i = 1;
root=insert(root,"cut", 3);
if (root != NULL)
free(root);
return 0;
}
node_t* insert(node_t* pNode,char* word, int weight) {
if (pNode == NULL){
/**
* Create a new pNode, and save a character from word
*/
pNode = (node_t*)malloc(sizeof(node_t));
pNode->left = NULL;
pNode->equal = NULL;
pNode->right = NULL;
pNode->data = word;
}
return pNode;
}
为什么if(pNode == NULL) 会显示segmentation fault??该怎么改正!! 展开
char *data;
int weight;
bool end_of_key;
struct node * left;
struct node * equal;
struct node * right;
} node_t;
int main(int argc, char *argv[]) {
node_t* root = NULL;
int weight;
int i = 1;
root=insert(root,"cut", 3);
if (root != NULL)
free(root);
return 0;
}
node_t* insert(node_t* pNode,char* word, int weight) {
if (pNode == NULL){
/**
* Create a new pNode, and save a character from word
*/
pNode = (node_t*)malloc(sizeof(node_t));
pNode->left = NULL;
pNode->equal = NULL;
pNode->right = NULL;
pNode->data = word;
}
return pNode;
}
为什么if(pNode == NULL) 会显示segmentation fault??该怎么改正!! 展开
4个回答
展开全部
1、
#include<stdio.h>
因为宏NULL定义在其中。
2、#include<stdlib.h>
因为包含了malloc函数的定义。
3、因为insert函数是定义在main的后面,调用它之前应声明,用
node_t* insert(node_t *,char *, int);
#include<stdio.h>
因为宏NULL定义在其中。
2、#include<stdlib.h>
因为包含了malloc函数的定义。
3、因为insert函数是定义在main的后面,调用它之前应声明,用
node_t* insert(node_t *,char *, int);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我运行了你的代码,并没有报这个错。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这是个变量的作用范围的问题,程序定义的时候,第一个i的做用范围是整个一级大括号,当程序跑到第二个大括号时,i重新定义了
这里的i是一个局部变量,在他的定义范围理内有效(即第二级大括号),再下来就是第三级大括号,第四个输出语句就是在第三级里面,而语句i++在第四级大括号里面,所以i先加1为4,然后输出两次,最后一次输出又回到了第一级大括号中,i=3的定义已经无效了,所以i=1。
这里的i是一个局部变量,在他的定义范围理内有效(即第二级大括号),再下来就是第三级大括号,第四个输出语句就是在第三级里面,而语句i++在第四级大括号里面,所以i先加1为4,然后输出两次,最后一次输出又回到了第一级大括号中,i=3的定义已经无效了,所以i=1。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询