http://wenku.baidu.com/link?url=xlFrDZZRlhLzi-CuYDaY1NWAK-hdl0cLaORBUDbxP6pymNTH3iUW6_V5zqFbFLHNw3xtMNRHw5TE2U9VjziOcB6k_fCZnRL0CVhq6abOboi
分类:
其他好文 时间:
2015-03-20 21:56:16
阅读次数:
204
except for 除了...以外(与 except for 连用的整体词与 except for 所跟的词往往不是同类的,是指整体中除去 一个细节。)eg:Your composition is good except for a few spelling mistakes. 除了几处拼写错.....
分类:
其他好文 时间:
2015-03-20 10:34:40
阅读次数:
117
Very good problem to learn knapsack (complete knapsack in this case).My brutal-force solution in Python got AC too, which surprised me a bit. Here is ...
分类:
其他好文 时间:
2015-03-19 06:18:36
阅读次数:
135
Two notes:1. I dont know whether C++ has a good split function for STL as the JAVA. Need to figure it out.2. At the beginning, I tried to set tmp1 = t...
分类:
其他好文 时间:
2015-03-19 06:17:36
阅读次数:
130
Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321click to show spoilers.Have you thought about this?Here are some good questions to ask before coding. Bonus poi...
分类:
其他好文 时间:
2015-03-18 16:02:37
阅读次数:
120
[chengmo@centos5 shell]$ (sed -n '1,$p'|grep -n 'echo')<test.sh 5: echo "very good!";7: echo "good!";9: echo "pass!";11: echo "no pass!";#...
分类:
系统相关 时间:
2015-03-18 10:26:41
阅读次数:
189
从Futurice公司Android开发者中学到的经验。 遵循以下准则,避免重复发明轮子。若您对开发iOS或Windows Phone 有兴趣, 请看iOS Good Practices 和 Windows client Good Practices 这两篇文章。摘要 使用 Gradle 和它推荐的...
分类:
移动开发 时间:
2015-03-18 00:59:38
阅读次数:
264
A boy named Gena really wants to get to the “Russian Code Cup” finals, or at least get a t-shirt. But the offered problems are too complex, so he made an arrangement with his n friends that they will s...
分类:
编程语言 时间:
2015-03-16 14:36:02
阅读次数:
141
A boy named Gena really wants to get to the "Russian Code Cup" finals, or at least get a t-shirt. But the offered problems are too complex, so he made an arrangement with his n friends
that they wil...
分类:
其他好文 时间:
2015-03-15 23:05:06
阅读次数:
277
iOS 环境下,链接某个静态库(.a文件)时,Xcode 会出现链接错误:
xxx file was built for archive which is not the architecture being linked (i386)
这是因为静态库是为iOS 环境编译的,并不能在模拟器环境下使用,只要将Build 目标改成设备即可。如果是:
ld: warning: ignoring fi...
分类:
移动开发 时间:
2015-03-15 09:31:20
阅读次数:
189