/*
*corpyright (c)2013,煙台大學計算機學院
*all right reseved.
*完成日期:2023年4月22日
*版本號:v1.0
*輸入描述:
*問題描述:建立乙個向量類myvector!
*程式輸出:
*問題分析:
*演算法設計:
*/#include using namespace std;
class myvector //定義向量類
myvector(const myvector &v) //複製建構函式
~myvector() //析構函式:釋放動態陣列所占用的儲存空間
friend istream &operator>>(istream &input, myvector &d);
friend ostream &operator<
friend myvector operator+(const myvector &d1,const myvector &d2);//向量相加,對應位置上的元素相加
friend myvector operator-(const myvector &d1,const myvector &d2);//向量相減,對應位置上的元素相減
bool operator==(const myvector &d);//判斷兩個矩陣是否相等,即對應位置上的所有元素是否相等
private:
int *array; //array 為動態陣列指標,指向向量占用記憶體的起始位址
int num; //向量中元素個數
感悟一牽扯指標就犯暈。。
第九周專案二
corpyright c 2013,煙台大學計算機學院 all right reseved.完成日期 2014年4月21日 版本號 v1.0 輸入描述 問題描述 時間累!程式輸出 問題分析 演算法設計 include include using namespace std class ctime v...
第九周專案五
corpyright c 2013,煙台大學計算機學院 all right reseved.完成日期 2014年4月22日 版本號 v1.0 輸入描述 問題描述 設計一元一次方程類,求形如ax b 0的方程的解!程式輸出 問題分析 演算法設計 include include using namesp...
第九周 專案1
include using namespace std class complex complex double r,double i complex operator complex c2 complex operator complex c2 complex operator complex c...