十四周實驗報告2

2021-06-06 16:23:31 字數 1027 閱讀 8698

* (程式頭部注釋開始)

* 程式的版權和版本宣告部分

* 檔名稱:建立專門的陣列類處理有關陣列的操作

* 作    者:       肖騰威                

* 完成日期:     2012    年 5    月 21日

* 版 本 號:      

201158504435

* 對任務及求解方法的描述部分

#includeusing namespace std;

class student

student *next;

int num;

double score;

};class mylist

mylist(int n,double s) //以student(n,s)作為單結點的鍊錶

int display(); //輸出鍊錶,返回值為鍊錶中的結點數

void insert(int n,double s); //插入:將student(n,s)結點插入鍊錶,該結點作為第乙個結點

void cat(mylist &il); //將鍊錶il連線到當前物件的後面

int length(); //返回鍊錶中的結點數

private:

student *head;

};void mylist::insert(int n,double s) //插入:將student(n,s)結點插入鍊錶,該結點作為第乙個結點

ss->next=new student(n,s);

}void mylist::cat(mylist &il) //將鍊錶il連線到當前物件的後面

ss->next=il.head;

}int mylist::length() //返回鍊錶中的結點數

return length;

}int mylist::display() //輸出鍊錶,返回值為鍊錶中的結點數

return length;

}int main()

cout<<"head1: "<

第十四周實驗報告2

程式頭部注釋開始 程式的版權和版本宣告部分 檔名稱 抽象類csolid 作 者 於宸 完成日期 2012 年 05 月 21 日 版 本 號 1.068 對任務及求解方法的描述部分 輸入描述 問題描述 程式輸出 程式頭部的注釋結束 includeusing namespace std class s...

第十四周實驗報告2

includeusing namespace std class student student next int num double score class mylist mylist int n,double s 以student n,s 作為單結點的鍊錶 int display 輸出鍊錶,返...

第十四周實驗報告(2)

作 者 王琦 完成日期 2012 年 05 月 23 日 版 本 號 v1.0 對任務及求解方法的描述部分 輸入描述 問題描述 在已有 的基礎上完善程式,完成動態鍊錶的簡單操作 程式輸出 程式頭部的注釋結束 includeusing namespace std class student stude...