摘要:
OS:Ubuntu 14.04Extract the distribution archive, i.e. apache-maven-3.2.2-bin.tar.gz to the directory you wish to install Maven 3.2.2. These instructio... 阅读全文
摘要:
Generating SSH KeysWe strongly recommend using an SSH connection when interacting with GitHub. SSH keys are a way to identify trusted computers, witho... 阅读全文
摘要:
题意:在矩阵数组中搜索两点是否可达解法:DFS 1 #include 2 #include 3 using namespace std; 4 struct position{ 5 int x; 6 int y; 7 position(int xx,int yy){ 8 x = xx; 9 y = yy;10 }11 position(){}12 };13 14 int maze[101][101];15 int canReach;16 position dest; //destination17 int row,co... 阅读全文