在搜索勃朗特AnalysisofthebinaryEuclideanalgorithm这篇论文时,苦逼啊,在ACM上只能找到Abstract,无全文,终于万能的google让我找到了作者的博客。。。。http://rpbrent.com/http://wwwmaths.anu.edu.au/~bre... Read More
posted @ 2012-06-19 12:44 Dance With Automation Views(135) Comments(0) Diggs(0)
from:http://angelustenebrae.livejournal.com/15908.htmlThe MathematiciansI think I spent almost two months just working on this. Excluding the time not working on this piece, it probably would have taken me about a month if I went at it non-stop. But now it's all finished.Here are the mathematici Read More
posted @ 2012-06-18 16:28 Dance With Automation Views(489) Comments(0) Diggs(0)
Cantor的工作给数学发展带来了一场革命。由于他的理论超越直观,所以曾受到当时一些大数学家的反对,就连被誉为“博大精深,富于创举”的数学家Pioncare也把集合论比作有趣的“病理情形”,甚至他的老师Kronecker还击Cantor是“神经质”,“走进了超越数的地狱”.对于这些非难和指责,Cantor仍充满信心,他说:“我的理论犹如磐石一般坚固,任何反对它的人都将搬起石头砸自己的脚.”他还指出:“数学的本质在于它的自由性,不必受传统观念束缚。”这种争辩持续了十年之久。Cantor由于经常处于精神压抑之中,致使他1884年患了精神分裂症,最后死于精神病院。来自数学权威们的巨大精神压力终于摧. Read More
posted @ 2012-06-18 15:14 Dance With Automation Views(134) Comments(0) Diggs(0)
哈密顿的家庭生活是不幸福的.早在1823年,他爱上了一位同学的姐姐卡塞琳·狄斯尼(Catherine Disney),但遭到她的拒绝,哈密顿却终身不能忘情.在恋爱生活中一再碰壁之后,他于1833年草率地同海伦·贝利(Helen Bayly)结婚.虽然生育二子一女,终因感情不合而长期分居.哈密顿经常不能正规用餐,而是边吃边工作.他去世后,在他的论文手稿中找到不少肉骨头和吃剩的三明治等残物.看到最后一句,太欢乐了! Read More
posted @ 2012-06-18 14:27 Dance With Automation Views(145) Comments(0) Diggs(0)
Stein J最大公约数算法最初于1967年发表在Journal of Computational Physics,原文标题为:Computational problems associated with Racah algebra,目前版权在Elsevier(http://www.sciencedirect.com/ ),只可惜学校好像没买到这麽老的索引,所以只能查看摘要,要全文需要30刀。。 ... Read More
posted @ 2012-06-17 15:59 Dance With Automation Views(285) Comments(0) Diggs(0)
依旧现贴出程序代码再进行分析: 1: #include <stdio.h> 2: #include <stdlib.h> 3: 4: int sc=0; 5: int max3(int a,int b, int c) 6: { 7: sc++; 8: if(a>b) 9: { 10: return... Read More
posted @ 2012-06-17 13:33 Dance With Automation Views(220) Comments(0) Diggs(0)
先给出实现程序,如下: 1: int max_sub_sum2(const int v[],int n) 2: { 3: int max=0; 4: int currentSum=0; 5: int i=0; 6: 7: for(i=0;i<n;i++) 8: { 9: currentSum+=v... Read More
posted @ 2012-06-17 13:33 Dance With Automation Views(353) Comments(0) Diggs(0)
依旧先摆出算法代码: 1: int get_common_divisor(int a,int b) 2: { 3: int x=a; 4: int y=b; 5: int m=0; 6: 7: while(y>0) 8: { 9: m=x%y; 10: x=y; ... Read More
posted @ 2012-06-17 13:32 Dance With Automation Views(264) Comments(0) Diggs(0)
1: #include <stdio.h> 2: #include <stdlib.h> 3: 4: int sc=0; 5: int max3(int a,int b, int c) 6: { 7: sc++; 8: if(a>b) 9: { 10: return a>c?a:c; 11: ... Read More
posted @ 2012-06-15 08:56 Dance With Automation Views(439) Comments(0) Diggs(0)
开发者拒绝写技术博客的常见理由 发布时间:2012-04-29 03:00 来源:伯乐在线 分类: 程序员 3 条评论 » 常有人跟我讨论我在blog上发布过的博文,有时候他们还希望我来撰写某些文章。在讨论的过程中,我几乎总是会问为什么你自己不开一个博客,或者为其他人的博客做些贡献呢?当我在引导他们为技术类的主题写一些博文时,极少有人对此感兴趣。 我的母亲总是告诉我(以及她的学生们)每个人都有自己... Read More
posted @ 2012-06-11 09:02 Dance With Automation Views(159) Comments(0) Diggs(0)