摘要:
#define New int inline New read()//快速读入 { New X = 0, w = 0; char ch = 0; while (!isdigit(ch)) { w |= ch == '-'; ch = getchar(); } while (isdigit(ch)) 阅读全文
摘要:
##这次没有题目水字数了,记录一个很棒的快速排序模板!! void Qsort(int beg, int end) { int mid = str[(beg + end) / 2]; int i = beg, j = end; do { while (str[i] < mid)i++; while 阅读全文