思考のかけら

Mensu - 思考のかけら

Mensu's Blog concerning what he has learned during programming

用本地 Windows 镜像文件安装 .NET Framework 3.5

install .NET Framework 3.5 using local iso files on Windows

The article was initially posted on 2016-03-27. 问题 无法通过 Windows Update 安装 .NET Framework 3.5, 表现如下: 上图来源 上图来源 解决办法 找到安装本系统用的光盘文件,装载 如果找不到,可以考虑到 MSDN,我告诉你 下载 接下来以管理员身份运行 cmd ,*具体方法...


常用输出格式归纳:printf 和 stream

output format comparison between c-style printf and cpp-style stream

The article was initially posted on 2016-03-13. 说起输出格式的控制,C 中用得最多的是各种 printf ,例如 printf、fprintf、sprintf ,声明于 <stdio.h> ,调用时必须通过字符串设置格式 而 C++ 中一般使用各种 stream ,例如 ostream、ofstream、ostrings...


基于 GitHub Pages + Jekyll 的网站开发环境的搭建

establish the development environment for websites based on GitHub Pages and Jekyll

The article was initially posted on 2016-02-26. 适用人群 打算在 GitHub Pages 上用 Markdown 写博客,建立个人博客网站,所以想在本地搭建相应调试环境的人 使用 Mac 或 Windows 的操作系统 需要安装的东西 基础程序——ruby、git Gem——jekyll、jekyll-pagina...


Adobe Acrobat DC/Adobe Reader 任务栏图标出错、异常、不显示 (Windows下)

fix broken taskbar icons of Adobe products in Windows

The article was initially posted on 2016-02-21. 要做的是删除图标缓存: 以管理员身份运行 cmd ,*具体方法见文末 复制粘贴以下命令,回车 有些 Windows 系统 cmd 下粘贴需要在 cmd 中右键 - 粘贴 cd /d "%userprofile%\AppData\Local" attrib –h "IconCache...


合并排序

merge sort

The article was initially posted on 2016-02-20. 合并排序的核心部分 打个比方 合并排序的核心,是将两个内部有序的数组,合并为一个有序的数组 具体的想法很好理解,有点类似于两个队伍打比赛 队伍都按照由弱到强的顺序派出队员,每次都是1v1的个人赛,赢的人留在台上做擂主,输的人排入休息队伍【别问为啥 |・ω・`) 然后,输者的队伍继续...