摘要:
1 打开配置文件 sudo vim /etc/vim/vimrc 2 将下面的代码复制进去 runtime! debian.vim if has("syntax") syntax on endif set number"显示行号 colorscheme desert set guifont=Cons 阅读全文
摘要:
int partition(int a[], int start, int end) {//快排的partition操作 if (start >= end) { return start; } int i = start, j = end; int tmp = a[start]; while (i 阅读全文