自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(0)
  • 资源 (13)
  • 收藏
  • 关注

空空如也

The Algorithm Design Manual

这本书是The Algorithm Design Manual的英文版,看起来讲的算法的知识既有理论,又有实践,很不错。所以希望大家能喜欢

2011-05-24

Head First Design Patterns

这本书是Head First Design Patterns的英文版,浅显易懂,很清楚的讲了设计模式的内容,非常好,希望大家能喜欢。

2011-05-24

Structure and Interpretation of Computer Programs

这本书是Structure and Interpretation of Computer Programs的英文版教材,看过之后受益匪浅,是国外的经典教材。希望大家喜欢

2011-05-24

The.Java.Programming.Language.4th

这本书是The.Java.Programming.Language.4th的英文版,chm格式的,很小巧,而且看起来特别清晰,希望大家喜欢哈哈

2011-05-24

Java Network Programming

这个是Java Network Programming这本书的英文版,很清晰的,希望大家喜欢。哈哈大家可以打印出来看。

2011-05-24

Value Ordering Heuristic for Solving Algorithm Based on the AC-4 Algorithm

约束满足问题(CSP-Constraint Satisfaction Problem)的弧相容算法。弧相容(AC-arc consistency)则是众多相容性算法中一个高效的相容性技术。

2010-10-15

中国国家集训队论文集2004

中国国家集训队论文集2004,网上应该有目录。呵呵

2010-04-09

中国国家集训队论文集1999-2003

这个是全集,后面还有更多的,这个只列一个2003论文目录。需要的下。 国家集训队2003论文集 何林:《一类称球问题的解法》 王知昆:《浅谈用极大化思想解决最大子矩形问题》 刘才良:《平面图在信息学中的应用》 陆可昱:《长方体体积并》 雷环中:《结果提交类问题》 侯启明:《信息论在信息学竞赛中的简单应用》 刘一鸣:《一类搜索的优化思想——数据有序化》 方奇:《染色法和构造法在棋盘上的应用》 邵烜程:《数学思想助你一臂之力》 饶向荣:《病毒的DNA———剖析一道字符匹配问题解析过程》 林希德:《求最大重复子串》 张云亮:《论对算法的选择》 许智磊:《浅谈补集转化思想在统计问题中的应用》 项荣璟:《充分利用问题性质——例析动态规划的“个性化”优化》 张宁:《猜数问题的研究——《聪明的学生》一题的推广》 伍昱:《由对称性解2-SAT问题》 周源:《浅析“最小表示法”思想在字符串循环同构问题中的应用》 姜尚仆:《模线性方程的应用——用数论方法解决整数问题》 金恺:《探寻深度优先搜索中的优化技巧——从正方形剖分问题谈起》 高正宇:《答案只有一个——浅谈问答式交互问题》

2010-04-09

c++标准程序库 简体中文

c++标准程序库的简体中文版。希望大家喜欢

2009-03-11

C++编程思想(thinking in c++)答案

是volume 1的课后答案,以前从网上下了几个,可是都不是,这个绝对正宗。先给2-1的答案。 2-1 Modify Hello.cpp so that it prints out your name and age (or shoe size, or your dog’s age, if that makes you feel better). Compile and run the program. Solution: The original Hello.cpp appeared in the text as follows: // Saying Hello with C++ #include <iostream> // Stream declarations using namespace std; int main() { cout << "Hello, World! I am " << 8 << " Today!" << endl; } Here’s my rewrite: //: S02:Hello2.cpp #include <iostream> using namespace std; int main() { cout << "Hello, World! I am Chuck Allison." << endl; cout << "I have two dogs:" << endl; cout << "Sheba, who is " << 5 << ", and" << endl; cout << "Muffy, who is 8." << endl; cout << "(I feel much better!)" << endl; } /* Output: Hello, World! I am Chuck Allison. I have two dogs: Sheba, who is 5, and Muffy, who is 8. (I feel much better!) */ ///:~ I chose to have separate statements that send output to cout, but I could have printed everything in a single statement if I had wanted, like the example in the text does. Note that in the case of Sheba’s age, I printed 5 as an integer, but for Muffy I included the numeral in the literal text. In this case it makes no difference, but when you print floating-point numbers that have decimals, you get 6 decimals by default. Bruce discusses later in the text how to control output of floating-point numbers.

2008-11-13

c how to program 答案

c how to program 的答案,这本书内容很多,但觉得还是题不错,而且代码写的好,我受益匪浅,顾发出来与大家分享。但是我找了许久也只有前6章的,希望哪位大侠能找到后面的几章告诉我,或是发一个给我,十分感谢agmouse@tom.com

2008-07-21

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除