摘要:
Definition[定义]: The #define Directive You can use the #define directive to give a meaningful name to a constant in your program. The two forms of the 阅读全文
摘要:
"Sorting Algorithm" ==== Summary There are a lot of sorting algorithms, I have only done on a part of the exercises and tests, and there are a lot of 阅读全文
摘要:
#include #include #include using namespace std; struct def1 { int x; int y; } q[3000000]; struct def2 { int len; int x; int y; } val[550]; int dctx[6]= {0,1,0,-1,0},dcty[6]= {0,0,1,0,-1}; int n,... 阅读全文