/*通過vc++6.0編譯*/
/*菜鳥級第一次曬程式,請高人指點,*/
#include
#include
#include
typedef struct node_1type; /*儲存學生資訊*/
typedef struct node_2list; /*定義鍊錶結構*/
print()
/*輸出螢幕,功能選單*/
int select()
else
break;
}return sn;
} /*選單選擇功能*/
list *creat (list *head)/*尾插法*/
p->next=null; /*單鏈表結束標誌*/
return head;
}list *insert(list *head)
else return null;
}while(r&&jnext;
j++;
}if(!r)
if(r->next==null)
q->next=r->next;/*將待插入節點插入*/
r->next=q;
return head;
}list *find(list *head)
else
}if(i==2)
else}}
list *del(list *head)
while(q!=null&&q->next!=p)
q=q->next;
if(!q)
q->next=p->next;
free(p); /*刪除節點*/
printf("刪除成功!/n");
return head;
}int play(list *head)/*鍊錶為空*/
p=head->next;
while(p->next)/*鍊錶非空,從頭結點開始遍歷便表,直到尾節點*/
return 0;
}main()}}
學生資訊管理系統(C語言)
include includetypedef struct s student student insert student last student head 不傳頭 student order student student head,int student list length 按學號小到大...
c語言學生資訊管理系統
超簡單的學生資訊管理系統 使用順序表實現 適合入門,新手學習使用 include include include include define n 20 int count 0 typedef struct student typedef struct sqlist void create sqli...
學生資訊管理系統
學生資訊管理系統,顧名思義就是為了管理學生的相關資訊做的一款軟體。雖然這次有原始碼供我們參考,但是從中我學習到了如何從開始到完工去做一款軟體,下邊我從做一項軟體專案的前後順序來總結我的學生資訊管理系統。一,分析需求 首先在做這款軟體是,我們先想象乙個成品,他的功能有哪些,每個功能完成哪項任務,這就是...