07 2016 档案
摘要:Office Web Apps for SharePoint 2010 2012年09月20日 ⁄ 综合 ⁄ 共 908字 ⁄ 字号 小 中 大 ⁄ 评论关闭 After you install Office Web Apps on Sharepoint Server, you can open d
阅读全文
摘要:作者 书名 Bjarne Stroustrup The Design and Evolution of C++Stanley B. Lippman C++ PrimerStanley B. Lippman Essential C++Pike和Kernighan The Practice of Pro
阅读全文
摘要:1. 概念 2. 举例 3. 分析 4. 代码 1 //在冒泡排序的过程中,关键字较小的记录好比水中的气泡逐趟向上漂浮,而关键字较大的记录好比石块往下沉,每一趟有一块“最大”的石头沉到水底。 2 #include <iostream> 3 using namespace std; 4 5 void
阅读全文
摘要:{ "path": "C:\\Dev-Cpp\\bin", "cmd": ["g++.exe", "${file}", "-o", "${file_path}/${file_base_name}"], "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (
阅读全文
摘要:上次周例会我给大家做了题目为:《漫游移动平台前端开发》的汇报,现在推荐一些额外的学习资料。 依照目前iPhone/Android 迅速提升市占率的情势来看,未来如果想要在先进的智慧型手机上撰写应用程式,要不是选择使用Objective-C + CocoaTouch Framework 撰写iPhon
阅读全文
摘要:jQuery Mobile http://jquerymobile.com/ jQTouch http://jqtouch.com/ DHTMLX Touch http://dhtmlx.com/touch/ Mobilize.js http://mobilizejs.com/ The M Proj
阅读全文
摘要:新建编译器选项 选择菜单栏中的 Tools ——> Build System ——> New Build System ,输入: 另存为ST3程序目录的 Packages/User 文件夹下面,文件名为: Javac.sublime-build ,如下 编辑好Java代码文件后,输入 Ctrl +
阅读全文
摘要:http://bbs.it-home.org/thread-46291-1-1.html 摘要(Abstract) 更新记录 更正打开控制台的快捷键为Ctrl + ` 更正全局替换的快捷键为Ctrl + Alt + Enter 前言(Prologue) 编辑器的选择(Editor Choices)
阅读全文
摘要:配置C#编译器 新建编译器选项 选择菜单栏中的 Tools ——> Build System ——> New Build System ,输入: 另存为ST3程序目录的 Packages/User 文件夹下面,文件名为: C#.sublime-build ,如下 编辑好C#代码文件后,输入 Ctrl
阅读全文
摘要:2.Sublime Text3是绿色版的,如何添加到右键菜单,可以快速使用Sublime Text3打开? (1)cmd命令中运行:regedit,打开注册表。 (2)依次找到HKEY_CLASSESS_ROOT->*->Shell,下面新建项,命名为Edit with Sublime Text3。
阅读全文
摘要:It was not possible to complete an automatic installation. This might be due to a problem with your network, proxy servers or an unsolvable installati
阅读全文
摘要:FileSendClient : Form1.cs Form1.Designer.cs FileSendServer Form1.cs Form1.Designer.cs
阅读全文
摘要:爱盘 -- 在线破解工具包 http://down.52pojie.cn/
阅读全文
摘要:说明: http://download.csdn.net/detail/chwei_cson/4423874 源码: http://download.csdn.net/download/meicanjun/2427168
阅读全文
摘要:using SevenZip; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SLibrary { public class SevenZipUtil...
阅读全文
摘要:N皇后问题是一个经典的问题,在一个N*N的棋盘上放置N个皇后,每行一个并使其不能互相攻击(同一行、同一列、同一斜线上的皇后都会自动攻击)。 一、 求解N皇后问题是算法中回溯法应用的一个经典案例 回溯算法也叫试探法,它是一种系统地搜索问题的解的方法。回溯算法的基本思想是:从一条路往前走,能进则进,不能进则退回来,换一条路再试。 在现实中,有...
阅读全文
摘要:/* ** 目前最快的N皇后递归解决方法 ** N Queens Problem ** 试探-回溯算法,递归实现 */ #include "stdafx.h" #include "iostream" #include using namespace std; #include "time.h" // sum用来记录皇后放置成功的不同布局数;upperlim用来标记所有列都已经放置好了皇后。 ...
阅读全文
摘要:http://ftp.daumkakao.com/eclipse/oomph/epp/neon/R/eclipse-inst-win64.exe http://ftp.kaist.ac.kr/eclipse/technology/epp/downloads/release/neon/R/eclips
阅读全文