上一页 1 ··· 9 10 11 12 13 14 下一页
摘要: #include #include #define OK 1#define OVERFLOW -1#define ERROR 0#define LIST_INIT_SIZE 100#define LISTINCREMENT 10type... 阅读全文
posted @ 2015-12-16 22:44 一支小白 阅读(474) 评论(0) 推荐(0) 编辑
摘要: 是因为下页的表格太大,占据了一页,要把下面的表格拉小一点 阅读全文
posted @ 2015-12-16 22:43 一支小白 阅读(3520) 评论(0) 推荐(0) 编辑
摘要: ?123456789101112131415161718192021222324252627282930313233//在n个球中,任取m个(不放回),求有多少种取法#includeintfun(intn,intm){if(n0)returnfun(n-1,m-1)+fun(n-1,m);}intm... 阅读全文
posted @ 2015-12-15 23:06 一支小白 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 本人电脑win7 64位 提前装一下convert to utf-8插件,编译运行出现乱码,组合键ctrl+shift+c把源文件转成gbk编码. 仍乱码的话,重启编辑器|电脑|重新编辑中文部分。 c++ { "working_dir": "$file_path", "cmd": "g++ -Wal 阅读全文
posted @ 2015-12-14 13:37 一支小白 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 我用的是绿色版找到sublime的安装目录 搜索 exec.py 打开找到这几句话193行左右或者搜索关键词path if "PATH" in merged_env: self.debug_text += "[path: " + str(merged_env["PATH"]) + "]" else: self.debug_text += "[path: " + str(os.... 阅读全文
posted @ 2015-12-14 06:07 一支小白 阅读(918) 评论(0) 推荐(0) 编辑
摘要: 格式控制1. %d %o %x %c %s %f %e 无%u格式、%g格式2. scanf("%3d%3d", &a, &b); 输入:123456 //a=123,b=4563. scanf("%2d%*3... 阅读全文
posted @ 2015-12-11 20:01 一支小白 阅读(2261) 评论(0) 推荐(0) 编辑
摘要: http://tool.oschina.net/apidocs 阅读全文
posted @ 2015-12-11 19:12 一支小白 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 主题DIYMonokai • TmTheme Editorhttp://tmtheme-editor.herokuapp.com 阅读全文
posted @ 2015-12-08 21:23 一支小白 阅读(132) 评论(0) 推荐(0) 编辑
摘要: ?12345678910111213总结:递归调用仅仅是被调函数恰为主调函数注意每次调用的层次不同注意每次分配形参并非同一个变量注意返回的次序形象的故事:从前有座山(1).山里有座庙(1).庙里有个老和尚(1)和小和尚(1).老和尚对小和尚说:“从前有座山(2).山里有座庙(2).庙里有个老和尚(2... 阅读全文
posted @ 2015-12-05 10:39 一支小白 阅读(190) 评论(0) 推荐(0) 编辑
摘要: ?12345678910111213141516171819202122232425262728293031323334353637/**@Author:SHUAI*@Date:2015-12-0508:50:58*//*串的比较,思路s1[0]==s2[0]逐层递归三个出口长度不同比较到最后0个首... 阅读全文
posted @ 2015-12-05 10:06 一支小白 阅读(200) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 下一页