Reverse digits of an integer.Example1: x = 123, return 321 Example2: x = -123, return -321Have you thought about this?Here are some good questions to ...
分类:
其他好文 时间:
2014-06-17 20:06:14
阅读次数:
205
感谢微信平台---一天一道算法题---每天多一点进步这题 我都懒得贴了....因为 很巧合的是 我已经做过他了 我也详细地讲过自己的 颠沛 做这题时要是 感兴趣 可以去找下 我的随笔 -- 前面的记录a good news ---- 昨晚和晓爷 一起看的那个 蛮有意思的阶乘AC了 但还有个关于阶乘 ...
分类:
其他好文 时间:
2014-06-17 14:10:15
阅读次数:
160
1. Greeting message 祝福Hope you have a good trip.祝旅途愉快。How are you?你好吗?How is the project going on?项目进行顺利吗?2. Initiate a meeting 发起会议I suggest we have ...
分类:
其他好文 时间:
2014-06-15 20:40:09
阅读次数:
260
世界杯揭幕了,有些汉子痴迷于看球冷落了女朋友,丝毫没有意识到女朋友怒了。汉子们,如果你的女朋友说了以下9句话,你可是要警惕了!如果她说“没事”,你可能就摊上大事了!!The other day a friend told me his girlfriend was being very quiet....
分类:
其他好文 时间:
2014-06-15 13:20:44
阅读次数:
394
Thank you for your applying for employment with our company. Your application is now being processed. If you have any questions, please contact us.Any...
分类:
其他好文 时间:
2014-06-14 17:07:12
阅读次数:
204
Ectra Credit 180,181,182,183,184,185,186,187,188,189,190
180 What Makes a Good TCG or CCG?这期讲了收集游戏的好处。收集类游戏强制你获得新的卡片,每当你获得这些卡片的时候你就得考虑新的策略。这样玩家就可以不断地探索游戏机制。收集类游戏的学习曲线比较平滑。由于系统本身的庞大,很难找到最佳策略,同时也就有了很多思考空间。181 ...
分类:
其他好文 时间:
2014-06-14 17:01:02
阅读次数:
267
题目
A message containing letters from A-Z is being encoded to numbers using the following mapping:
原题链接(点我)
解题思路及代码;
解码方法数量问题。英文26个字母对应1到26,给一串数字,问翻译为字母有多少种方法?
这个题第一思路是想到使用组合排列的方法,穷举所有的可能。很好,写出如下代码...
但是提交后出来的结果是超时。
再想想,使用动态规划的方法来做。
对于串s[0...i]的解码数量应该和s[0.....
分类:
其他好文 时间:
2014-06-13 20:44:04
阅读次数:
292
main() { char s[30]; strcpy(s, "Good News!");
/*给数组赋字符串*/ . . . } 上面程序在编译时, 遇到char s[30]这条语句时, 编译程序会在内存的某处留 出连续30个字节的区域,
并将第一个字节的地址赋给s。当遇到strcpy( strc...
分类:
其他好文 时间:
2014-06-13 19:48:44
阅读次数:
318
Artificial marble is actually a kind of
"plastic concrete", is a kind of new building material, used for high-grade
building and furniture decoration ...
分类:
其他好文 时间:
2014-06-09 18:49:09
阅读次数:
237
题目
A message containing letters from A-Z is being encoded to numbers using
the following mapping:
'A' -> 1
'B' -> 2
...
'Z' -> 26
Given an encoded message containing digits, determine ...
分类:
其他好文 时间:
2014-06-08 15:30:08
阅读次数:
182