C -链表函数调用



我正试图准备我的项目,但void insertCourse(CourseNodePtr* cr, char* code);函数为参数2给出语法错误;开关箱1中的代码。有人知道为什么它不起作用吗?

     struct course{
       char code[10];
       char name[40]; 
       char instructor[40];
       char term[10];
       int year; 
       struct course *coursePtr; /* pointer to next node */
       }; 
typedef struct course Course; /* synonym for struct course  */
typedef Course *CourseNodePtr; /* synonym for CourseNodePtr* */

/* Function Prototypes */
void insertCourse(CourseNodePtr* cr, char* code);
char* deleteCourse(CourseNodePtr* cr, CourseNodePtr* inscr, char* code);
void insertStudent(FILE* filePtr, StudentNodePtr* cr, int id); 
int deleteStudent(FILE* filePtr, StudentNodePtr* cr, int id);
void displayStudent(FILE* filePtr, int id);
void displayClassNumbers(FILE* filePtr, int id);
void displayRecvCourse (FILE* filePtr, char* code, char* term, int year);
void registration(FILE* filePtr);
void instructions( void );
int main(void)
{
CourseNodePtr startPtr = NULL; /* initially there are no nodes */
StudentNodePtr startPtr1 = NULL; /* initially there are no nodes */
int choice; /* user's choice */
Course code;  
Student id; 
Course year;

instructions(); /* display the menu */
printf( "? " );
scanf( "%d", &choice );
while (choice != 9) {
      switch (choice) {
             case 1:
                  printf("Pls enter the course code to be inserted.n");
                  scanf("%s", code); 
                  insertCourse( &startPtr, char* code);
                  break; 
                  /*

      printf( "? " );
      scanf( "%d", &choice );

printf( "End of run.n" );
getch();  
return 0; /* indicates successful termination */
  } /* end main */

/* Insert course function  */
 void insertCourse(CourseNodePtr* cr, char* code)
 {
 CourseNodePtr newPtr;   /* New node pointer */
 CourseNodePtr previousPtr;   /* previous node pointer in list */
 CourseNodePtr currentPtr;    /* current node pointer in list */
 newPtr = malloc( sizeof(Course) );   /* memory allocation for new node */
 if (newPtr != NULL) {
           printf("Pls enter the code number of the course.n");
           scanf("%s", &(newPtr->code));
           printf("Pls enter the course name.n"); 
           scanf("%s", &(newPtr->name));
           printf("Pls enter the instructor name.n"); 
           scanf("%s", &(newPtr->instructor));
           printf("Pls enter the term; Spring or Fall.n"); 
           scanf("%s", &(newPtr->term));
           printf("Pls enter the year.n"); 
           scanf("%s", &(newPtr->year));
           newPtr->coursePtr = NULL; 
           previousPtr = NULL; 
           currentPtr = *cr; 
           while ((currentPtr != NULL)  && (code > currentPtr->code)) {
                 previousPtr = currentPtr; 
                 currentPtr = currentPtr->coursePtr; 
           }  /* End While */
           if ( previousPtr == NULL ) {
                newPtr->coursePtr = *cr; 
                *cr = newPtr; 
           }   /* End if */
           else {
                previousPtr->coursePtr = newPtr; 
                newPtr->coursePtr = currentPtr; 
           }  /* End else */
       } /* End if */
    else {
         printf( " %c could not be inserted. Memory not enough...n", code); 
    }  /* End else */
  } /* End function insert */ 

不能输入这样的结构。%s读入一个字符串,而不是一个结构。你必须一个一个地读字段。或者将代码更改为字符串类型,或动态分配的字符数组。

EDIT: also here:

insertCourse( &startPtr, char* code);

不能指定char*作为code的类型。相反,您应该执行强制转换:

insertCourse( &startPtr, (char*)code);

相关内容

  • 没有找到相关文章

最新更新