第九周專案二

2021-06-21 15:25:10 字數 2480 閱讀 7831

/*

*corpyright (c)2013,煙台大學計算機學院

*all right reseved.

*完成日期:2023年4月21日

*版本號:v1.0

*輸入描述:

*問題描述:時間累!

*程式輸出:

*問題分析:

*演算法設計:

*/#include #include using namespace std;

class ctime

void timea();

void settime(int h,int m,int s);

void display();

//二目的比較運算子過載

bool operator > (ctime &t);

bool operator < (ctime &t);

bool operator >= (ctime &t);

bool operator <= (ctime &t);

bool operator == (ctime &t);

bool operator != (ctime &t);

//二目的加減運算子的過載

//返回t規定的時、分、秒後的時間,例t1(8,20,25),t2(11,20,50),t1+t2為:41:15

ctime operator+(ctime &t);

ctime operator-(ctime &t);//對照+理解

ctime operator+(int s);//返回s秒後的時間

ctime operator-(int s);//返回s秒前的時間

//二目賦值運算子的過載

ctime operator+=(ctime &c);

ctime operator-=(ctime &c);

ctime operator+=(int s);//返回s秒後的時間

ctime operator-=(int s);//返回s秒前的時間

//一目運算子的過載

ctime operator++(int);//後置++,下一秒

ctime operator++();//前置++,下一秒,前置與後置返回值不一樣

ctime operator--( int);//後置--,前一秒

ctime operator--();//前置--,前一秒

friend ostream& operator<

friend istream& operator>>(istream& output,ctime &t1);

};//下面實現所有的運算子過載**。

ostream& operator<

//自行編制用於測試的main()函式,有些結果不必依賴display()函式,提倡用單步執行檢視結果

ctime ctime::operator++(int)

ctime ctime::operator++()

ctime ctime::operator--(int)

ctime ctime::operator--()

void ctime::timea()

//比較運算返回的是比較結果,是bool型的true或false

//可以直接使用已經過載了的運算實現新運算,例如果已經實現了 > ,則實現 <= 就可以很方便了……

void ctime::settime(int h,int m,int s)

bool ctime::operator >= (ctime &t) // 判斷時間t1<=t2

bool ctime::operator < (ctime &t) // 判斷時間t1<=t2

bool ctime::operator > (ctime &t) // 判斷時間t1<=t2

bool ctime::operator <= (ctime &t) // 判斷時間t1<=t2

bool ctime::operator == (ctime &t) // 判斷時間t1<=t2

bool ctime::operator != (ctime &t) // 判斷時間t1<=t2

//可以直接使用已經過載了的加減運算實現

//這種賦值, 例如 t1+=20,直接改變當前物件的值,所以在運算完成後,將*this作為返回值

ctime ctime::operator+=(ctime &c)

ctime ctime::operator-=(ctime &c)

ctime ctime::operator+=(int s)

ctime ctime::operator-=(int s)

ctime ctime::operator+(ctime &t)

ctime ctime::operator-(ctime &t)

void ctime::display()

第九周專案二

檔名稱 完成日期 2014年 04月22號 版本號 v1.0 對任務及求解方法的描述部分 輸入描述 無 問題描述 時間類中的運算子過載 程式輸出 無 問題分析 演算法設計 include using namespace std class ctime ctime ctime int h,int m,...

第九周專案二

煙台大學計算機學院 檔名稱 xiangmu.cpp 完成日期 2017年11月9日 問題描述 實現二叉樹的先序 中序 後序遍歷的遞迴演算法,並對用 a b d,e h j,k l,m n c f,g i 建立的二叉樹進行測試。輸入描述 無 輸出描述 輸出二叉樹先中後序遍歷結果 include inc...

第九周專案四

corpyright c 2013,煙台大學計算機學院 all right reseved.完成日期 2014年4月22日 版本號 v1.0 輸入描述 問題描述 建立乙個向量類myvector!程式輸出 問題分析 演算法設計 include using namespace std class myv...