Gedit配置
虽然说在Linux系统上vim才是主流玩家,但是gedit配置简单,而且符合正常人的理念,所以小编在这里放一个gedit配置。
gedit自动编译和运行
这个是标准版的,可以适合任何cpp。
#!/bin/sh
name=$GEDIT_CURRENT_DOCUMENT_NAME
dir=$GEDIT_CURRENT_DOCUMENT_DIR
pre=${name%.*}
g++ $dir/$name -o $pre -std=c++11 -w
if test $? -eq 0; then
gnome-terminal -x bash -c "time $dir/$pre;echo;read;"
fi
这个是简单版的,只能用固定的cpp和固定的输入文件
#!/bin/sh
g++ a.cpp -o a
time ./a < a.in
gedit片段
可能一些人也是第一次知道gedit还有这个,但是恰当的使用它确实可以提高码代码的速度,而且还不容易错。
基本框架(longdie):
#include <bits/stdc++.h>
using namespace std;
int main() {
$0
return 0;
}
for循环:(for)
for(register int $1; $2; $3)
读入scanf:(scanf)
scanf("$1", $2)
输出printf:(printf)
printf("$1", $2)
freopen:(freopen)
freopen("$1", "$2", $3);