#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct module {
char name[10];
int note;
struct module * next;
};
typedef struct module module;
struct student {
char name[10];
char adress[20];
struct student * next;
module * head;
} ;
typedef struct student student;
student *etudiant=NULL;
module* add_module(char name[],int note){
module *p=(module*)malloc(sizeof(module));
p->note=note;
p->next=NULL;
strcpy(p->name,name);
return p;
}
void add_student(char name[], char adress[])
{
student *p=(student*)malloc(sizeof(student));
strcpy(p->name,name);
strcpy(p->adress,adress);
p->head= add_module("algo",15);
p->next=NULL;
if (etudiant==NULL){
etudiant=p;
}
else{
student *q = etudiant;
while(q->next!=NULL){
q=q->next;
}
q->next=p;
}
}
void print_module(module *m){
if (m==NULL)
{
printf("NULL");
}
else
{
while(m->next!=NULL){
printf("%s ",m->name);
printf("%d\n",m->note);
m=m->next;
}
}
}
void print(){
student *p;
module *m;
p = etudiant;
if (etudiant==NULL){
printf("NULL");
}
else
{
while (p->next!=NULL);
{
printf("%s ",etudiant->name);
printf("%s ",etudiant->adress);
m = p->head;
while(m != NULL){
printf("%s ",m->name);
printf("%d ",m->note);
m= m->next;
}
p = p->next;
}
}
}
int main() {
add_student("jack","nowhere");
print();
return 0;
}
我想創建一個列表爲例鏈表(嵌套鏈接列表)
Student list :
Student || subject || ==> student 2 || subject
| |
maths POO
| |
physiques English
這是我的結構的近似paiting內部列表,我趕到添加一個主題給一個學生,但我不知道如何添加更多。 在此先感謝。
我所定義的學生名單作爲一個全球性,因爲我會需要一個包含所有學生
什麼是你的問題? –
我編輯了我的問題 –
什麼是模塊?它在學生裏面嗎? – Sean83