摘要:
题目意思: 从n个数中选择m个数,按字典序输出其排列。 http://acm.nyist.net/JudgeOnline/problem.php?pid=19 例: 输入:n=3。m=1; 输出:1 2 3 输入:n=4。m=2; 输出:12 13 14 21 23 24 31 32 34 41 4 阅读全文
摘要:
总结说的有的过大,算是对自己学习的一个总结。兴许会不断补充。 模型总结 muduo是基于非堵塞的IO和事件驱动的网络库。 muduo的总体结构时one loop per thread+threadpool,图例如以下: mainReactor和subReactor都是EventLoop,在mainR 阅读全文
摘要:
Tree Time Limit: 6000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1954 Accepted Submission(s): 573 Problem De 阅读全文
摘要:
今天遇到string字符编码的问题,由于遇到了用TTS将文本转语音的一个API,里面的中文必须是utf8的,我传了一个uncode编码的中文进去,就一直不能正常读出来。后来才发现是编码的问题。这里在网上找到两个API,可将string 传成utf8编码的string。挺好用的。 记录下来: std: 阅读全文
摘要:
In the past four blogs, we attached importance to the index, including description and comparison with usage of index. Now in this blog, we will mainl 阅读全文