gpt4 book ai didi

c - 如果我使用 GPA 指针,为什么在使用 scanf ("%lf", GPA) 时会出现段错误,如果不是指针,则在使用 scanf ("%lf", &GPA) 时会出现段错误?

转载 作者:行者123 更新时间:2023-11-30 19:35:12 24 4
gpt4 key购买 nike

void fillQueueWithStudents(Queue *q)
{
int counter = 1;
char answer = 'Y';

//this signifies the current variables that
//are being dealt with
char *currName;
double GPA;

student stud;
while((answer != 'N') || (answer != 'n'))
{
printf("Please enter the info for student %i \n",counter);

//Gets the name of the current student being entered
printf("Name: ");
scanf("%s", currName);
printf("\n");

//Gets the gpa of the current student being entered
printf("GPA: ");
scanf("%lf", &GPA);
//somewhere here is the problem
printf("\n");

//makes our student have the current variables
stud.name = currName;
stud.gpa = GPA;

//enqueues this student
enQueue(q,stud);

//increments to the next student
counter++;

//This sees if the user wants to enter another student
printf("Do you want to enter another student. Enter 'N' or 'n' for
no. \n");
scanf("%c", &answer);
printf("\n");
}
}

我在 scanf 之前和之后打印了 hello,它们都打印了。它不允许我输入 GPA 值。我想知道它是否正在扫描整个换行符或类似的东西。我不明白为什么它不让我输入一个值。我猜它试图在 GPA 变量中投入太多。

下面是完整的程序。

#include <stdlib.h>
#include <stdio.h>

typedef struct
{
char *name;
float gpa;
}student;

//This struct will represent a node in the queue
typedef struct Node
{
student *stud;
struct Node *next;
}QNode;

//This struct will identify the queue
//It will store the front and rear values to make
//it easier to enqueue and dequeue
typedef struct
{
QNode *front, *rear;
}Queue;

/*
This creates a new node with some data k.
It then sets its next value to NULL.
Then it returns the new node

Note: This node is not yet known to the queue. I will
use a separate function to do that
*/
QNode* newNode (student *stud)
{
QNode *temp = (QNode*)malloc(sizeof(QNode*));
temp->stud->gpa = stud->gpa;
temp->stud->name = stud->name;
temp->next = NULL;
return temp;
}

//Creats a empty queue
Queue* createQueue()
{
Queue *q = (Queue*)malloc(sizeof(Queue*));
q->front = q->rear = NULL;
return q;
}
/*
Uses the newNode function to make a new node in our linked list.
Then it puts that node in the correct place in the queue. This
is at the back
*/
void enQueue(Queue *q, student stud)
{
QNode *temp = newNode(&stud);//this creats a new node

/*
Checks if queue is empty, and if it is sets
our new node temp to rear and front. Then it
ends the function
*/
if(q->rear == NULL)
{
q->front = q->rear = temp;
return;
}
//sets the current rears next to our new node temp
q->rear->next = temp;
//this makes temp the new rear
q->rear = temp;
}

/*
This function serves/dequeues a node.
As always nodes are dequeued from the front of the
queue
*/

QNode *deQueue(Queue *q)
{
//if the queue is empty tell the user by
//returning NULL
if(q->rear == NULL)
{
return NULL;
}

/*
I will return front to the user in case they want
to use the data included in it. I have to save
front first to do that. So I save it hear
*/
QNode *temp = q->front;

//Now I make front equal to its next
q->front = q->front->next;

/*
This makes rear NULL if front is NULL
This means the list is empty and we have dequeued the last
node.
*/
if(q->front == NULL)
{
q->rear == NULL;
}

printf("The element dequeued was %s \n",temp->stud->name);
//This returns the node we have dequeued
return temp;
}

void printQueue(Queue *q)
{
//Check is the queue is empty and if it is stop the
//function
if(q->rear == NULL)
{
return;
}

/*
I will now print out each node out one by one.
To do this I create a QNode pointer and make it equal to the
front. I will then print all contents of front
and make temp equal to the next print and repeat this
till the end.
*/
QNode *temp = q->front;
while(temp != NULL)
{
int counter = 1;
printf("Student %i: Name: %s GPA: %f \n",
counter, temp->stud->name, temp->stud->gpa);

//increment the counter to display next student
counter++;

//Get the next node
temp = temp->next;
}
}

/*
This function keeps adding students to the queue until the
user enters 'N' that signifies they are done
*/
void fillQueueWithStudents(Queue *q)
{
int counter = 1;
char answer = 'Y';

//this signifies the current variables that
//are being dealt with
char *currName;
float GPA;

student stud;
while((answer != 'N') || (answer != 'n'))
{
printf("Please enter the info for student %i \n",counter);

//Gets the name of the current student being entered
printf("Name: ");
scanf("%s", currName);
printf("\n");

//Gets the gpa of the current student being entered
printf("GPA: ");
scanf("%f", &GPA);
printf("\n");

//makes our student have the current variables
stud.name = currName;
stud.gpa = GPA;

//enqueues this student
enQueue(q,stud);

//increments to the next student
counter++;

//This sees if the user wants to enter another student
printf("Do you want to enter another student. Enter 'N' or 'n' for no. \n");
scanf("%c", &answer);
printf("\n");
}
}

int main()
{
Queue *q = createQueue();

fillQueueWithStudents(q);

QNode *temp;
do {
temp = deQueue(q);
free(temp);
printQueue(q);
} while(temp != NULL);

return 0;
}

最佳答案

这个:

scanf("%s", currName);

是未定义的行为,因为 currName 未初始化。使用 scanf() 和普通 %s 来读取名称并不是一个好主意。使用缓冲区 (!),然后告诉 scanf() 缓冲区大小:

char currName[128];

if(scanf("%127s", currName) == 1)
{
}

...并检查返回值,如图所示。

请注意,%s 在第一个空白字符处停止,因此您将无法读取包含空格的名称。

关于c - 如果我使用 GPA 指针,为什么在使用 scanf ("%lf", GPA) 时会出现段错误,如果不是指针,则在使用 scanf ("%lf", &GPA) 时会出现段错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42955856/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com