关于比赛环境设置
1.gdb
右键我的电脑-属性-高级-环境变量-path
找到gdb所在目录,加到path后面
注意32位系统要用gdb32,编译时g++ -g -m32 xx.cpp -o xx
2.cmd默认路径修改
右键我的电脑-管理-系统工具-本地用户和组-用户-administrator-配置文件-主文件夹-本地路径
3.vim环境
linux终端输入:
sudo vim /etc/vim/vimrc
windows:点编辑,启动设定
进入vimrc后,在文件末输入
set nu//number行号
set tapstop=4//tab宽度
set shiftwidth=4;//缩进宽度
set nobackup//不备份出带 ~ 这个符号的文件
set autoindent//自动缩进
set ruler//显示标尺
set mouse=a//(all)使用鼠标
set guifont=Consolas:h14
colorscheme evening
然后是一些匹配,用imap (inoremap)
i:在光标所在字符前开始插入
a:在光标所在字符后开始插入
//imap <F24> w<ESC>xa//windows偶尔跳出<F24>乱码,把它改成输出一个数再删掉
imap {<CR> {<CR>}<ESC>O<TAB>
imap { {}<ESC>i//大括号设两种匹配好用
imap #bg #include <cstdio><CR>#include <cstdlib><CR>#include <cstring><CR>#include <cmath><CR>#include <cctype><CR>#include <algorithm><CR>using namespace std;<CR>typedef long long LL;<CR><CR><CR><CR>int main(){<CR>}<ESC>O<TAB>return 0;<ESC>O
//windows自动把前面的括号匹配用在最后#bg那里了,大括号换行匹配那也要去掉tab
//imap {<CR> {<CR>}<ESC>O
//int main(){<CR>return 0;<ESC>O