I'm trying to implement a simple linked list in C, but it seems that the first element is not properly added. Here is my code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <unistd.h>
typedef struct person{
int phoneNumber;
char* name;
struct person *nextPers;
}person;
person* firstPerson=NULL;
person* lastPerson=NULL;
void addPerson (person* _person){
/*Adds a new person to the linked list after the last one added
*/
if (firstPerson!=NULL){
fprintf(stderr,"DEBUG(addPerson): First person is %s \n",firstPerson->name);
fprintf(stderr,"DEBUG (addPerson): Last Person is (before adding the new one) %s \n",lastPerson->name);}
fprintf(stderr,"DEBUG: Adding person %s \n",_person->name);
_person->nextPers= NULL;
if (firstPerson==NULL){
firstPerson = _person;
lastPerson= _person;
fprintf(stderr,"DEBUG: The head of the list is %s \n",firstPerson->name);
}else{
fprintf(stderr,"DEBUG: Last person (before adding the new one) %s \n",lastPerson->name);
fprintf(stderr,"DEBUG (addPerson):Adding to the list %s \n",_person->name);
lastPerson->nextPers =_person;
lastPerson=_person;
fprintf(stderr,"DEBUG: Last person %s \n",lastPerson->name);
}
}
int main(int argc, char* argv[]){
char line[80],name[80];
int number;
setvbuf(stdout,(char*)malloc(sizeof(char)*80),_IOLBF,80);
setvbuf(stdin,(char*)malloc(sizeof(char)*80),_IOLBF,80);
for(;fgets(line,80,stdin);){
if(!strcmp(line,"Finish\n"))
break;
sscanf(line,"%[^:]: %d",name,&number);
/* Stores the person introduced from stdin as Name:phone */
if(firstPerson!=NULL){
fprintf(stderr,"DEBUG (Before storing new data aparently): First person is %s \n",firstPerson>name);
}
person * newPerson= malloc(sizeof(person));
newPerson->phoneNumber = number;
newPerson->name = name;
fprintf(stderr,"DEBUG: Adding person %s \n",newPerson->name);
fprintf(stderr,"DEBUG: phone number %d \n",newPerson->phoneNumber);
addPerson(newPerson);
fprintf(stderr,"DEBUG: There is a new person on the list\n");
}
}
The expected output is:
Harvey:12345
DEBUG: Adding person Harvey
DEBUG: phone number 12345
DEBUG: Adding person Harvey
DEBUG: The head of the list is Harvey
DEBUG: There is a new person on the list
Adam:23456
DEBUG (Before storing new data aparently): First person is Harvey
DEBUG: Adding person Adam
DEBUG: phone number 23456
DEBUG(addPerson): First person is Harvey
DEBUG (addPerson): Last Person is (before adding the new one) Harvey
DEBUG: Adding person Adam
DEBUG: Last person (before adding the new one) Harvey
DEBUG (addPerson):Adding to the list Adam
DEBUG: Last person Adam
DEBUG: There is a new person on the list
But instead, the output is:
Harvey:12345
DEBUG: Adding person Harvey
DEBUG: phone number 12345
DEBUG: Adding person Harvey
DEBUG: The head of the list is Harvey
DEBUG: There is a new person on the list
Adam:23456
DEBUG (Before storing new data aparently): First person is (null) //Wrong, its Harvey
DEBUG: Adding person Adam
DEBUG: phone number 23456
DEBUG(addPerson): First person is Adam //Wrong, its Harvey
DEBUG (addPerson): Last Person is (before adding the new one) Adam //Wrong, its Harvey
DEBUG: Adding person Adam
DEBUG: Last person (before adding the new one) Adam //Wrong its Harvey
DEBUG (addPerson):Adding to the list Adam
DEBUG: Last person Adam
DEBUG: There is a new person on the list
to sum up, the main idea is to get a linked list that is: Harvey->Adam->(next) but I don't know where the error may be.
fprintf(stderr, "DEBUG (Before storing new data aparently): First person is %s \n", firstPerson>name);->fprintf(stderr, "DEBUG (Before storing new data aparently): First person is %s \n", firstPerson->name);lastPerson->nextPers = _person;: here the type of_personisperson*whereas the type oflastPerson->nextPersisstruct proceso *. You mixed up something.