使用if条件检查指针是否为NULL时,C ++程序崩溃

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用if条件检查指针是否为NULL时,C ++程序崩溃相关的知识,希望对你有一定的参考价值。

我正在尝试队列中的C程序作为链表。每当我尝试执行时,如果条件比较指针(在这种情况下为q-> f)与NULL,它会在遇到时崩溃。请检查以下代码:

#include<stdio.h>
using namespace std;
struct node
{
    int info;
    node *next;
};
struct que
{
    struct node *f; //front
    struct node *r; //rear
    que()
    {
        f=r=NULL; //initialize as NULL
    }
};
struct que *pq;
/* prototypes */
void disp(struct que *q);
int emp(struct que *q);
void ins(struct que *q,int x);
void del(struct que *q);

int main()
{
    int cho;
    while(1)    //so that it executes continuously and I can exit whenever I want
    {
        printf("Enter 1 to insert in a queue
");
        printf("Enter 2 to delete in a queue
");
        printf("Enter 3 to display the queue
");
        scanf("%d",&cho);
        if (cho==1)
        {
            int x;
            printf("Enter the info to be added
");
            scanf("%d",&x);
            ins(pq,x);
        }
        else if (cho==2)
            del(pq);
        else if (cho==3)
            disp(pq);
    }
    return 0;
}
int emp(struct que *q) // Check whether queue is empty or not
{
    return ((q->f==NULL)?1:0); //Error
}
void ins(struct que *q,int a)
{
    node *p;
    p=new node;
    p->info=a;
    p->next=NULL;
    if ((q->r)==NULL)   //Error. I get crash and this statement is never executed.
        (q->f)=p;
    else
        (q->r)->next=p;
    (q->r)=p;
    printf("Node added
");
}
void del(struct que *q)
{
    node *p=NULL;
    if (emp(q))
    {
        printf("Empty queue.Insert some elements
");
        return;
    }
    p=q->f;
    q->f=p->next;
    delete p;
    printf("Node deleted
");
}
void disp(struct que *q)
{
    if (emp(q))
    {
        printf("Empty queue.Insert some elements
");
        return;
    }
    node *i=NULL;
    for (i=q->f;i!=NULL;i=(i)->next)
        printf("%d
",i->info);
}

如果((q-> r)== NULL),我怀疑语句有问题。执行程序导致崩溃“已停止工作”。我也尝试用if(!q-> r)替换它,但没有太大的成功。我无法在我的代码中找到问题。请帮助我......谢谢

答案

你永远不会初始化pq,所以下面的q->rundefined behaviour

if ((q->r)==NULL)   //Error. I get crash and this statement is never executed.

解决这个问题的一种方法是转弯

struct que *pq;

struct que pq;

然后将&pq传递给ins()等人。

以上是关于使用if条件检查指针是否为NULL时,C ++程序崩溃的主要内容,如果未能解决你的问题,请参考以下文章

C语言中free掉一段空间后为啥还要使用NULL

两个表连接时如何检查字段是不是为空

类型“Null”不是类型转换中“bool”类型的子类型

常见的内存错误及其对策

python if条件判断dataframe是否为空

Go语言循环判断的使用~