Fork me on GitHub
摘要: 写给自己看,纯属打发时间。。。 阅读全文
posted @ 2017-06-27 20:30 RongT 阅读(144) 评论(0) 推荐(1)
摘要: 运行时限为1s,这很常见,对于该时限,我们设计的算法复杂度不能超过百万级别,即不要超过一千万。假如你的算法时间复杂度为O(n^2),则n不应该大于3000 空间限制是32MB,即你程序中申请的内存不能超过32MB,简单计算一下就能知道你申请了多少内存,比如int a[100],大致需要100 * 4 阅读全文
posted @ 2017-06-27 20:13 RongT 阅读(3920) 评论(0) 推荐(1)
摘要: codeblock安装后,提示cant find compiler executable in your configured search paths for GNU GCC Compiler 可能的情况有两个: 1)安装的是不带编译器的版本 2)安装了带编译器的版本,但是没有指定正确的路径。 解 阅读全文
posted @ 2017-06-27 18:45 RongT 阅读(4437) 评论(0) 推荐(1)
摘要: 下载汉化包,百度搜索 “codeblock汉化包”即可, 比如:http://www.jb51.net/softs/545123.html 将其拷贝到,此路径: X:\Program Files (x86)\CodeBlocks\share\CodeBlocks\locale\zh_CN,没有的文件 阅读全文
posted @ 2017-06-27 17:47 RongT 阅读(15396) 评论(0) 推荐(2)