//正確**
#include
using
namespace std;
typedef
long
long ll;
const
int max_n=
1e6+10;
intmain()
return0;
}/**
* author : max_n
* date : 2019-10-04-15.03.21
* description : 正確**
*/
//錯誤**
#include
using
namespace std;
typedef
long
long ll;
const
int max_n=
1e6+10;
intmain()
return0;
}/**
* author : max_n
* date : 2019-10-04-15.03.29
* description : 錯誤**
*/
//生成隨機資料
#include
using
namespace std;
typedef
long
long ll;
const
int max_n=
1e6+10;
intmain()
return0;
}/**
* author : max_n
* date : 2019-10-04-15.03.50
* description : 生成隨機資料
*/
//對比測試資料(小資料)
#include
using
namespace std;
typedef
long
long ll;
const
int max_n=
1e6+10;
intmain()
return0;
}/**
* author : max_n
* date : 2019-10-04-15.10.21
* description : 對拍
*/
//結果寫入檔案(提交去掉 #define test即可)
#include
using
namespace std;
typedef
long
long ll;
const
int max_n=
1e6+10;
intmain()
return0;
}/**
* author : max_n
* date : 2019-10-04-15.03.21
* description : 將結果寫入檔案
*/
#include
using namespace std;
typedef
long
long ll;
intmain()
clock_t endtime=
clock()
; cout<<
(double
)(endtime-starttime)
/clocks_per_sec<<
"s"
}
常用測試資料
程式或應用編寫好了之後,通常要輸入一些測試資料,我們懶人一般的做法就是,輸入 asdf,愛上對方,阿道夫。之類的隨手打的字元。這裡,我收集了一點點資料供測試時候使用,應該可以作為常用的測試資料。1.常用的姓名 平時,很多系統比如員工名字需要,但是又怕洩露隱私,所以這裡從網上收集了中國50個最常用的姓...
oracle training 測試資料
sqlplus sys zhou215 as sysdba startup connect oracle oracle 由於虛擬機器是linux的 plsql沒有linux的版本,需要通過本機連上虛擬機器 配置檢視ip sbin ifconfig a 192.168.81.128 將虛擬機器的ip填...
聊聊測試資料
部分思路參考 對於被測系統而言,一條測試資料是指一組輸入和對應輸出的組合。因此,測試的本質其實就是乙個產生和消耗大量資料的過程。這些資料可以被用於以下兩種用途 因此,測試資料對於測試而言非常重要。對於功能測試 functional testing 而言,測試資料是否完備基本決定了測試用例設計是否完備...