摘要:
hibernate+proxool搞了一天的在hibernate中配置proxool,终于算是调通过了,其中遇到了许多问题,在这里和大家分享一下.1.官网下载地址: http://sourceforge.net/projects/proxool/files/2.说明一下我的配置环境 JRE1.6, tomcat6.0,hibernate3.1, proxool-0.9.0RC3 数据库为MSSQL2005 JDBC驱动为sqljdbc.jar3.配置步聚(1) 建立proxool.xml文件,路径为根目录src下即与hibernate.cfg.xml同目录,内容如下:<?xml vers 阅读全文
摘要:
http://graphics.im.ntu.edu.tw/~robin/courses/gm07/reading.html 阅读全文
摘要:
http://support.echoview.com/WebHelp/Reference/File_formats/Export_file_formats/Volume_data_set_file_formats.htmhttp://openqvis.sourceforge.net/docu/fileformat.html 阅读全文
摘要:
http://www.jdom.org/downloads/docs.html 阅读全文
摘要:
http://www.oracle.com/technetwork/articles/javase/index-140168.html 阅读全文
摘要:
http://www.leetcode.com/2011/03/median-of-two-sorted-arrays.html 阅读全文
摘要:
http://www.seas.upenn.edu/~andre/general/student_research_advice.html 阅读全文
摘要:
一本讲解字符串算法的非常全面的书籍,很著名Dan Gusfield Algorithms on Strings, Trees and Sequences: Computer Science and Computational Biology下载链接:http://www.ppurl.com/2011/10/algorithms-on-strings-trees-and-sequences.html 阅读全文
摘要:
在看Suffix Tree的线性时间创建算法的时候知道的这个人,貌似对LR文法也有研究,mark之http://www.cs.helsinki.fi/u/ukkonen/ 阅读全文
摘要:
KMP算法是非常经典的字符串匹配算法,而且有可能是最经典的一个。同时它也是非常典型的一种优化算法,它把原本暴力法O(mn)的最坏复杂度降低到了O(m+n)(虽然实际上暴力法的执行复杂度期望依然是线性的),其思想非常具有典型性和可借鉴性,值得好好学习。1 基本思想KMP算法的基本思想是,借助一个预先计算好的数组pi,在匹配了一定数量的模式的情况下,遇到不匹配的字符时,不像暴力法那样将待匹配的文本下标从上一次匹配的地方向后移动一个位置,并将已匹配的模式个数清零,而是利用已经匹配部分的信息,迅速跳过那些不可能匹配成功的文本开头,减少了暴力法中一些不必要的盲目搜索。比如,对于模式0 1 2 3 4 5 阅读全文