順序表驗證實驗

2021-08-18 09:49:17 字數 953 閱讀 3896

標頭檔案:

#ifndef seqlist_h

#define seqlist_h

const int maxsize=10;

class seqlist

seqlist(int a,int n);

~seqlist(){}

void insert(int i,int x);

int delete(int i);

int locate(int x);

void printlist();

private:

int data[maxsize];

int length;

};#endif

類seqlist的定義

#include

#include"seqlist.h"

seqlist::seqlist(int a,int n)

void seqlist::insert(int i,int x)

int seqlist::delete(int i)

int seqlist::locate(int x)

void seqlist::printlist()

;seqlist l(r,5);

cout<<"執行插入操作前資料為:"trycatch(char *s)

cout<<"執行插入操作後資料為:"cout<<"值為3的元素位置為:";

couttrycatch(char *s)

cout<<"刪除後資料為:"結果:執行插入操作前資料為:

1 2 3 4 5

執行插入操作後資料為:

1 3 2 3 4 5

值為3的元素位置為:2

執行刪除第乙個元素操作,刪除前資料為:

1 3 2 3 4 5

刪除後資料為:

3 2 3 4 5

press any key to continue

順序表驗證實驗

課程設計題目 順序表的驗證實驗 一 問題描述 通過本次驗證實驗,鞏固對線性表邏輯結構的理解,掌握線性表的儲存結構及基本操作的實現,為應用線性表解決實際問題奠定良好的基礎。二 實驗內容 1 建立含有若干個元素的順序表 2 對已建立的順序表實現插入 刪除 查詢等基本操作 三 設計與編碼 1 理論知識 線...

Windows EFS驗證實驗

在 windows 環境下,利用 efs 服務實現或驗證以下功能 1.使用 efs 既可加密檔案,也可加密資料夾 2.efs 加密位於檔案系統層,加解密效率高 3.帳戶 a 進行 efs 加密的檔案無法用帳戶 b 開啟,除非設定共享 4.帳戶 a 進行 efs 加密的資料夾無法用帳戶 b 開啟,除非...

Windows EFS驗證實驗

在windows 環境下,利用efs 服務實現或驗證以下功能 1.使用efs 既可加密檔案,也可加密資料夾 2.efs 加密位於檔案系統層,加解密效率高 3.帳戶a 進行efs 加密的檔案無法用帳戶b 開啟,除非設定共享 4.帳戶a 進行efs 加密的資料夾無法用帳戶b 開啟,除非設定共享 5.只有...