0
typedef struct node
{
Record data;
struct node *next;
}Node;
Node *head = NULL;
void addRecord(Record x)
{
Node *previousNode = NULL;
Node *newNode;
Node *n;
newNode = (Node*)malloc(sizeof(Node));
newNode->data = x;
newNode->next = NULL;
if (head == NULL) // The list is empty
{
head = newNode;
}
else // The list is not empty
{
n = head;
while (n->next != NULL)
{
***if (n->data < newNode->data && n->next->data > newNode->data)*** // Insertion Sort
{
// We have to put it between these 2 nodes
newNode->next = n->next;
n->next = newNode;
return;
}
else
{
previousNode = n;
n = n->next;
}
}
n->next = newNode;
}
}C Hata: ifade I sokma tür halinde işlev içinde kod bu hatayı aritmetik veya işaretçi türü
olmalıdır. Program, 'n' aritmetik veya işaretçi türüne sahip olması gerektiğini söylüyor. Sorun ne görünüyor?
[. C' 'malloc'un()' ve aile 'dönüş değer dağıtmak için neden bu tartışmayı bakınız] (http://stackoverflow.com/q/ 605845/2173917). –
Gönderdiğiniz hata iletisinin neredeyse hatalı olduğundan eminim (yapıştırılan) hatalı –
Hangi satırda hata oluyorsunuz? Kayıt türü tanımı nedir? – MikeC