主要国家和地区的国际论文产出与影响力比较[转]link http://blog.sciencenet.cn/home.php?mod=space&uid=38899&do=blog&id=507416 已有 7070 次阅读2011-11-13 01:32|个人分类:文献计量|系统分类:科研笔记|关...
分类:
其他好文 时间:
2014-07-22 00:39:34
阅读次数:
295
题目链接 Write a function to find the longest common prefix string amongst an array of strings. 题目的意思说的不是很清楚,开始理解成了求任意两个字符串的前缀中的最长者。但是本题的意思是求所有字符串的最长公共前缀,...
分类:
其他好文 时间:
2014-07-21 09:14:25
阅读次数:
225
Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ...
分类:
其他好文 时间:
2014-07-21 08:36:32
阅读次数:
208
初始化流程代码量比较少,也比较简单。主要是run函数。(我阅读的代码的linux内核版本是2.6.32.61)四、初始化流程分析 run函数顾名思义,很简单这就是在RAID1开始运行时调用,进行一些初始化的操作。主要是对RAID1中的conf进行初始化。run函数在md.c的do_md_run...
分类:
其他好文 时间:
2014-07-21 08:29:16
阅读次数:
347
在将一个fragment替换到一个frameLayout的时候报错:code: transaction.replace(R.id.fragment_container, fragment2);错误: java.lang.IllegalStateException: The specified chi...
分类:
其他好文 时间:
2014-07-21 08:03:10
阅读次数:
217
Wormholes
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 30169
Accepted: 10914
Description
While exploring his many farms, Farmer John has discovered a nu...
分类:
其他好文 时间:
2014-07-20 23:03:06
阅读次数:
301
mac的QuickTime player 默认打开视频之后,是暂停的状态
解决方法:进入终端输入以下命令,可以实现打开视频就开始播放
defaults write com.apple.QuickTimePlayerX MGPlayMovieOnOpen 1
mac的QuickTime Player 播放器上点击双箭头按钮可以用
2 倍的速度播放视频,
但是 2 ...
分类:
其他好文 时间:
2014-07-20 23:00:58
阅读次数:
258
Interesting Calculator
Time Limit: 2 Sec Memory Limit: 128 MB
Submit: 163 Solved: 49
Description
There is an interesting calculator. It has 3 rows of buttons.
Row 1: button 0, 1,...
分类:
其他好文 时间:
2014-07-20 22:35:23
阅读次数:
234
从写一个TCP套接字的write调用成功返回仅仅表示我们可以重新使用原来的应用进程缓冲区,并不代表对端TCP或应用进程已接收到数据。
对端TCP必须确认收到的数据,伴随来自对端的ACK的不断到达,本端TCP至此才能从套接字发送缓冲区中丢弃已确认的数据,TCP必须为已发送的数据保留一个副本,直到它被对端确认为止。
UDP不保存应用进程数据的副本因此无需一个真正的发送缓冲区,wri...
分类:
其他好文 时间:
2014-07-20 22:12:23
阅读次数:
333
Given two binary trees, write a function to check if they are equal or not.
Two binary trees are considered equal if they are structurally identical and the nodes have the same value.
比较两个...
分类:
编程语言 时间:
2014-07-20 22:12:03
阅读次数:
273