码迷,mamicode.com
首页 >  
搜索关键字:io    ( 172858个结果
文件加密及解密
原文:文件加密及解密 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
SharePoint2013 Powershell script to get site Title, Site Owner, Site user count and usage
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
C#播放MP3源代码
代码如下: 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
jquery click & get value of attributes of a href
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笔记
一般deep learning需要两步, unsupervised pre-train 和 superviesed NN training. Pre-training 用unsupervised方法train神经网络,得到word representation. 在第二步 supervised NN...
分类:其他好文   时间:2014-07-02 20:20:34    阅读次数:307
《Linux程序设计》——读书笔记
UNIX是一套计算机操作系统应遵循的特定规范(定义了所有必需的操作系统函数的名称、接口和行为),完全符合该规范的操作系统才允许使用“UNIX”的商标,否则就是“类UNIX操作系统”。 许多类UNIX系统都是商业性质的,如IBM的AIX,HP的HP-UX和Sun的Solaris;也有一些免费的,如Fr...
分类:系统相关   时间:2014-07-02 20:18:06    阅读次数:238
std::vector<std::vector<> >
上次看到这个有点晕了,其实这个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
001~003
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
windows 程序设计自学:窗口正中显示Hello,World
1 #include 2 3 LRESULT CALLBACK MyWndProc( HWND hwnd, // handle to window 4 UINT uMsg, // message identifier 5 WPARAM wParam, // fi...
分类:Windows程序   时间:2014-07-02 14:37:19    阅读次数:265
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!