01 2024 档案
c++ 竞赛常用函数模板
摘要:三路快排 void Quicksort(int l, int r) { if (l >= r) return; int key = arr[rand() % (r - l + 1) + l]; int i = l, j = l, k = r; while (i <= k) { if (arr[i]
fish shell的终端代理配置
摘要:在fish的配置文件(~/.config/fish/config.fish)中写入 function proxy set -xg ALL_PROXY http://localhost:ports end function noproxy set -e ALL_PROXY end 完毕