6-2 學生成績鏈表處理(10 分) 本題要求實現兩個函數,一個將輸入的學生成績組織成單向鏈表;另外一個將成績低於某分數線的學生結點從鏈表中刪除。 函數接口定義: struct stud_node *

struct stud_node *createlist() {     struct stud_node *head, *tail, *q;     head = tail = NULL;     int num;     scanf ("%d", &num);     while (num != 0)     {         q = (struct stud_node *)malloc (
相關文章
相關標籤/搜索