單鏈表創建學生成績

#include <iostream> using namespace std;   const int M=100;   struct Node   {           int data;           Node *next;   }; class LinkList               {       public:           LinkList();        
相關文章
相關標籤/搜索