摘要:
配置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 阅读全文