此课程(MOOCULUS-2 "Sequences and Series")由Ohio State University于2014年在Coursera平台讲授。PDF格式教材下载 Sequences and Series本系列学习笔记PDF下载(Academia.edu) MOOCULUS-2 So...
分类:
其他好文 时间:
2014-12-09 19:19:09
阅读次数:
213
原文 : http://www.cnblogs.com/NatureSex/archive/2011/04/21/2023265.html开发类visual_studio 2005-2010系列----------语言开发工具Visio 2003 / Power Desiger ----------...
分类:
Web程序 时间:
2014-12-09 11:49:56
阅读次数:
232
题目链接:http://poj.org/problem?id=2406思路:1.理解Kmp算法的next数组的意义;2.对于字符A[i],i-next[i]等价于在字符串中存在一个长度为i-next[i]的重复子串;3.当 i % (i - next[i]) == 0 等价于字符串由 (i/(i-n...
分类:
其他好文 时间:
2014-12-06 15:21:23
阅读次数:
173
Power Strings
Time Limit: 3000MS
Memory Limit: 65536K
Total Submissions: 33636
Accepted: 13973
Description
Given two strings a and b we define a*b to be their concatena...
分类:
其他好文 时间:
2014-12-05 22:47:36
阅读次数:
181
PowerManager pm=(PowerManager) getSystemService(Context.POWER_SERVICE);//获取电源管理器对象PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.ACQUIRE_CAUSE...
分类:
移动开发 时间:
2014-12-05 10:51:49
阅读次数:
320
nmon 是 Nigel's performance Monitor for Linux on POWER, x86, x86_64, Mainframe & now ARM (Raspberry Pi) 的缩写,意思是 Nigel(nmon 的作者是 Nigel Griffiths) 的 Linux 性能检测器。这一系统管理员、调谐器、基准测试工具将提供给你大量重要的性能信息。它可以有两种方式输...
分类:
系统相关 时间:
2014-12-04 18:02:30
阅读次数:
380
Power Strings
Time Limit: 3000MS
Memory Limit: 65536K
Total Submissions: 33623
Accepted: 13966
Description
Given two strings a and b we define a*b to be their concate...
分类:
其他好文 时间:
2014-12-04 01:02:06
阅读次数:
208
class Solution {
public:
double pow(double x,int n)
{
if(n<0)return 1.0/power(x,-n);
return power(x,n);
}
double power(double x, int n) {
if(n == 0) return 1;
double temp =...
分类:
其他好文 时间:
2014-12-03 21:19:09
阅读次数:
103
http://poj.org/problem?id=2109题意:kn= p,已知n,p,求k。1=1 and an integer p>= 1 you have to write a program that determines the n th positive root of p. In t...
分类:
其他好文 时间:
2014-12-03 21:08:49
阅读次数:
141