考虑一个问题:A^x%p=B,给定A,B,p,求x的最小非负整数解。
在p是质数的情况下,这个问题比较简单。
A^x=B(mod P) (P is a Prime, A,B
Let m = floor(sqrt(P))
Put A^0,A^1,...A^(m-1) into HashSet(You Can Also Use Map in STL),for Example M[A^i]=i....
分类:
编程语言 时间:
2014-10-28 13:55:30
阅读次数:
271
1.命名规则1.起始位为字母(大小写)或下划线('_')2.其他部分为字母(大小写)、下划线('_')或数字(0-9)3.大小写敏感2.先体验一把:#Ask the user their namename = input("Enter your name: ")#Make the first let...
分类:
编程语言 时间:
2014-10-28 13:35:12
阅读次数:
258
swift单例模式的几种方式:
1. 全局变量
private let _singleton = Singleton()
class Singleton: NSObject {
class var sharedInstance: Singleton {
get {
return _singleton
}
}
}
2. 内...
分类:
编程语言 时间:
2014-10-28 09:22:30
阅读次数:
229
UVA 357 Let Me Count The Ways(完全背包)
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=293
题意:
有5种硬币: 1分 5分 10分 25分 和50分. 现在给你一个面值n, 问你有多少种方法能利用上述硬币组合出n分的金钱.
分析:
典型的完全背包问题.
本题的限制条件: 硬币钱数正好等于n...
分类:
其他好文 时间:
2014-10-27 21:22:05
阅读次数:
246
自从去了百度就好久没有更新博客了,看了以前写的东东,以前在小公司还是比较闲啊。讽刺的是这次又要换工作去小公司,才想起写篇博。。。
去了百度后先学了python,然后前面的GG走了,我也不想用python了,就全力转用nodejs了。
越来越喜欢上JS家族了,最近看了一下ECMA6的新特性,着实又增强了JS的生命力啊。看国外ASMJS大牛的视频说,JS的作者只用了10天就创造了这门语言。
所以...
分类:
编程语言 时间:
2014-10-27 08:09:44
阅读次数:
239
clojure的let参数分解,文档描述的很清楚。比如它举的例子 (let?[[a?b?c?&?d?:as?e]?[1?2?3?4?5?6?7]]
??[a?b?c?d?e])
?
->[1?2?3?(4?5?6?7)?[1?2?3?4?5?6?7]] 这个let,使用其...
分类:
其他好文 时间:
2014-10-25 16:01:44
阅读次数:
183
Is C# a clone of a Microsoft replacement for Java?Let's look at whatAnders Hejlsberg Said.Hejlsberg: First of all, C# is not a Java clone. In the desi...
分类:
编程语言 时间:
2014-10-25 09:13:12
阅读次数:
211
print "Let's practice everything." print 'You\'d need to know \'bout escapes with \\ that do \n newlines and \t tabs.'poem = """\tThe lovely worldwith...
分类:
其他好文 时间:
2014-10-24 16:18:47
阅读次数:
161
Bash中的数学运算并不如其他语言般简便,因为Bash把所有变量都视作字符串,所以a=1+2,a并不等于3,而是等于字符串1+2。
为了解决这一问题,有如下几种方案。$[ ],$(()) ,expr,bc,let...
分类:
其他好文 时间:
2014-10-22 12:55:48
阅读次数:
204
How to let TVirtualStringTree to display an icon in disabled state?I need to display files in a directory to a TVirtualStringTree.So, I use SHGetFileI...
分类:
其他好文 时间:
2014-10-22 09:51:09
阅读次数:
157