線性表綜合實驗之間接定址

2021-08-09 07:50:52 字數 942 閱讀 6419

#includeusing namespace std;  

const int max=100;

templatestruct node

; templateclass indirectadd

t number_get(int i);

int location_get(t x);

void insert(int i,t x);

t delete(int i);

void printlist();

};

templateindirectadd::indirectadd()

length=n;

} templateindirectadd::~indirectadd()

templateint indirectadd::location_get(t x)

return 0;

} templatevoid indirectadd::insert(int i,t x)

templatet indirectadd::delete(int i)

void main()

; indirectaddstudent(stu,10);

cout<

鞏固線性表的資料結構的儲存方法和相關操作,學會針對具體應用,使用線性表的相關知識來解決具體問題。

準備時間為第3周到第4周,具體集中實驗時間為第4週第2次課。2個學時。

1 、建立乙個由n個學生成績的順序表,n的大小由自己確定,每乙個學生的成績資訊由自己確定,實現資料的對錶進行插入、刪除、查詢等操作。分別輸出結果。

2、用雙鏈表實現。

實驗二 線性表綜合實驗之《間接定址》

資料結構 實驗二 線性表綜合實驗 一 實驗目的 鞏固線性表的資料結構的儲存方法和相關操作,學會針對具體應用,使用線性表的相關知識來解決具體問題。二 實驗時間 準備時間為第3周到第4周,具體集中實驗時間為第4週第2次課。2個學時。三.實驗內容 1.建立乙個由n個學生成績的順序表,n的大小由自己確定,每...

線性表綜合試驗(間接定址)

一 實驗目的 鞏固線性表的資料結構的儲存方法和相關操作,學會針對具體應用,使用線性表的相關知識來解決具體問題。二.實驗內容 1.建立乙個由n個學生成績的順序表,n的大小由自己確定,每乙個學生的成績資訊由自己確定,實現資料的對錶進行插入 刪除 查詢等操作。分別輸出結果。源 include includ...

資料結構系列之線性表(間接定址)

ifndef indirectlist h define indirectlist h include using namespace std template class indirectiterator template class indirectlist int length const b...