原文:文件加密及解密 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using System.IO; 5 using System.Runtime.Serialization; 6 using S...
分类:
其他好文 时间:
2014-07-02 20:28:03
阅读次数:
163
Powershell script to get site Title, Site Owner, Site user count and usageAdd-PSSnapin microsoft.sharepoint.powershell -ErrorAction SilentlyContinue$w...
分类:
其他好文 时间:
2014-07-02 20:27:22
阅读次数:
704
以下四个验证性实验都做。(1)顺序查找验证(2)折半查找验证(3)二叉排序树的建立(4)哈希表的建立#include#include#include#include#include#includeusing namespace std;class dijiuzhang{public: int ...
分类:
其他好文 时间:
2014-07-02 20:24:09
阅读次数:
374
代码如下: 1 using System; 2 using System.Runtime.InteropServices; 3 using System.Text; 4 using System.IO ; 5 using System.Windows.Forms; 6 namesp...
分类:
其他好文 时间:
2014-07-02 20:23:24
阅读次数:
241
http://stackoverflow.com/questions/6625667/jquery-click-get-value-of-attributes-of-a-href/* Add a listner to Group buttons */ $('a.preActNav').clic...
分类:
Web程序 时间:
2014-07-02 20:22:43
阅读次数:
302
一般deep learning需要两步, unsupervised pre-train 和 superviesed NN training. Pre-training 用unsupervised方法train神经网络,得到word representation. 在第二步 supervised NN...
分类:
其他好文 时间:
2014-07-02 20:20:34
阅读次数:
307
UNIX是一套计算机操作系统应遵循的特定规范(定义了所有必需的操作系统函数的名称、接口和行为),完全符合该规范的操作系统才允许使用“UNIX”的商标,否则就是“类UNIX操作系统”。 许多类UNIX系统都是商业性质的,如IBM的AIX,HP的HP-UX和Sun的Solaris;也有一些免费的,如Fr...
分类:
系统相关 时间:
2014-07-02 20:18:06
阅读次数:
238
上次看到这个有点晕了,其实这个vector保存的是std::vector#include #include using namespace std;int main(){ std::vector > num; std::vector a(10, 5); num.push_back(...
分类:
其他好文 时间:
2014-07-02 20:14:53
阅读次数:
182
ProjectEuler// 001 1 #include 2 3 using namespace std; 4 5 int main() 6 { 7 int sum = 0; 8 for (int i = 3; i 2 3 using namespace std; 4 ...
分类:
其他好文 时间:
2014-07-02 14:40:32
阅读次数:
232
1 #include 2 3 LRESULT CALLBACK MyWndProc( HWND hwnd, // handle to window 4 UINT uMsg, // message identifier 5 WPARAM wParam, // fi...