This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void dfs(int start, int count, string &s, | |
vector<string> &tmp, vector<vector<string> > &result) | |
{ | |
if (start == s.size() && count == 0) { | |
result.push_back(tmp); | |
return ; | |
} | |
for (int i = start; i < s.size(); i++) { | |
tmp.push_back(s.substr(start, i-start+1)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void dfs(int start, string &s, | |
vector<string> &tmp, vector<vector<string> > &result) | |
{ | |
if (start == s.size()) { | |
result.push_back(tmp); | |
return ; | |
} | |
for (int i = start; i < s.size(); i++) { | |
tmp.push_back(s.substr(start, i-start+1)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object pascal { | |
def main(args : Array[String]) { | |
println("Pascal triangle") | |
for (row <- 0 to 10) { | |
for (col <- 0 to row) { | |
print(pascal(col, row) + " ") | |
} | |
println(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.akkadia.org/drepper/ | |
http://www.unixresources.net/linux/clf/ | |
http://www.cs.cmu.edu/~213/ | |
http://www.ece.cmu.edu/~ece845/ | |
http://pdos.csail.mit.edu/6.824/ | |
http://pdos.csail.mit.edu/6.828/, | |
http://software.intel.com/, | |
http://research.microsoft.com/en-us/default.aspx, | |
http://rdc.taobao.com/blog/cs/, | |
http://ww2.cs.mu.oz.au/mg/, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1、examine命令(简写是x)来查看内存地址中的值 | |
gdb x/nfu ADDR | |
n 是一个正整数,表示显示内存的长度,也就是说从当前地址向后显示几个地址的内容。 | |
f 表示显示的格式,如果地址所指的是字符串,那么格式可以是s,如果地十是指令地址,那么格式可以是i。 | |
u 表示从当前地址往后请求的字节数,如果不指定的话,GDB默认是4个bytes。u参数可以用下面的字符来代替,b表示单字节,h表示双字节,w表示四字 节,g表示八字节。当我们指定了字节长度后,GDB会从指内存定的内存地址开始,读写指定字节,并把其当作一个值取出来。 | |
举例: | |
(gdb) x/9i 0x7c00 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
场景一: | |
从某处得到了一个git仓库, 比如 git clone mit/jos.git 到本地了, | |
现在在github上建立空的Run/jos.git项目,想把本地的这份代码上传到github上去,肿么办? | |
方法: | |
$git branch -a | |
* lab1 | |
remotes/origin/HEAD -> origin/lab1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git remote add acme git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git | |
git fetch acme | |
git branch -all | |
git branch acme remotes/acme/perf/core | |
git checkout acme |
NewerOlder