標頭檔案
#ifndef seqlist_h
#define seqlist_h
const int maxsize = 100;
class seqlist
seqlist(int a, int n);
~seqlist(){}
int get(int i);
int locate(int x);
void insert(int i, int x);
int delete(int i);
void printlist();
private:
int data[maxsize];
int length;
};#endif
原始檔
#include
using namespace std;
#include "seqlist.h"
seqlist::seqlist(int a, int n)
}int seqlist::locate(int x)
int seqlist::get(int i)
void seqlist::insert(int i, int x)
int seqlist::delete(int i)
void seqlist::printlist()
;seqlist l(r, 5);
cout << "執行插入操作前資料為:" << endl;
l.printlist();
trycatch (char *s)
cout << "執行插入操作後資料為:" << endl;
l.printlist();
cout << "值為4的元素位置為:";
cout << l.locate(4) << endl;
cout << "第三個元素的值為:";
cout << "l.get(3)"l.printlist();
trycatch(char *s)
cout << "刪除後資料為:" << endl;
l.printlist();
}
第1章 靜態分析實驗題
lab1 1 question 1.上傳檔案至virustotal,有相應的反病毒特徵 2.使用peview無法檢視檔案編譯時間,但virustotal結果顯示 creation time 2010 12 19 16 16 38 creation time 2010 12 19 16 16 19 3...
C 第1次實驗二
一.問題及 檔名稱 ex0 作 者 荊蕾 完成日期 2016 年 3 月 10 日 版 本 號 v1.0 對任務及求解方法的描述部分 輸入描述 無 問題描述 我的第二個c 程式,熟悉程式的程式設計 執行過程,繼續努力 程式輸出 輸入兩個正整數,求出兩數的正差值並輸出 問題分析 略 演算法設計 略 i...
第1次實驗
課程 班級學 號 姓 名 實驗時間 軟體工程導論 12電信1 120705118 章朧朧2013.11.17 軟體工程實驗報告 一 電腦點歌系統需求分析 完成電腦點歌管理系統需求分析,建立需求模型計 系統掌握軟體開發過程中需求分析報告的寫法。將整個需求分析過程分為業務分析 使用者需求分析和系統需求分...