stl的通用算法基本有如下四种形式:
alg(beg, end, params):使用源输入作为输出
alg(beg, end, dest, params) :使用dest作为输出,需要保证有足够的空间,所以往往使用inserter
alg(beg, end, beg2, other params):beg2作为输出,假定beg2开始的范围至少跟beg和end指定的范围一样大。
alg(beg, end, beg2, end2, params):beg2 end2作为输出
举例:
第一种比如:
fin...
分类:
其他好文 时间:
2014-07-08 14:42:03
阅读次数:
144
1.config.properties文件写不进中文,写进去都变成了unicode,解决办法是右键该文件——Properties——Resource——Text file encoding ,选other,我将other改为了UTF-8,这样可以写进去中文,但是读取时又变成乱码了。
2,解决读取乱码:
String content = new String(PropertiesConfig.getProperty("mail.content").getBytes("ISO8859-1"), "utf-8"...
分类:
编程语言 时间:
2014-07-08 13:23:03
阅读次数:
160
#include #include class A{public: A() { printf("A()/n"); } ~A() { printf("~A()/n"); } A(const A& other) { ...
分类:
其他好文 时间:
2014-07-06 20:44:00
阅读次数:
152
Then-queens puzzle is the problem of placingnqueens on ann×nchessboard such that no two queens attack each other.Given an integern, return all distinc...
分类:
其他好文 时间:
2014-07-06 13:32:49
阅读次数:
204
题目如下:
Play on Words
Some of the secret doorscontain a very interesting word puzzle. The team of archaeologists has tosolve it to open that doors. Because there is no other way to open the doors,...
分类:
其他好文 时间:
2014-07-06 12:12:36
阅读次数:
221
1、主题。
File->Settings, 搜索Theme, 点开Appearance, 在右边面板的Theme中选择Darcula。
2、注释快捷键。
File->Settings,搜索keymap,点开Keymap,在右边面板上搜索,找到Other->Fix doc comment,双击,选择Add Keyboard Shortcut,按下你的快捷键。Eclipse中是alt + shi...
分类:
移动开发 时间:
2014-07-06 12:01:24
阅读次数:
226
Description: Given two strings, write a method to decide if one is a permutation of the other.We could use the same idea from CTCI 1.1. The only diffe...
分类:
其他好文 时间:
2014-07-05 21:43:01
阅读次数:
231
源自:http://www.myexception.cn/other/1391135.html 最近以裁判的身份参加了公司举办的编程大赛,发现高手云集,对公司内部的程序员能力也有了更深入的了解。我觉得编程能力对程序员而言,虽然很重要,但并不是全部。那么作为一个程序员,到底应该具备什么样的能力呢?这个...
分类:
其他好文 时间:
2014-07-05 21:27:29
阅读次数:
173
The 10,000-Hour Rule says that you need approximately 10,000 hours of practice to become a world-class expert in a field. There is no other way: if yo...
分类:
其他好文 时间:
2014-07-03 12:25:37
阅读次数:
214