码迷,mamicode.com
首页 >  
搜索关键字:des    ( 60086个结果
socket通信简单介绍
“一切皆Socket!”话虽些许夸张,可是事实也是,如今的网络编程差点儿都是用的socket。——有感于实际编程和开源项目研究。我们深谙信息交流的价值,那网络中进程之间怎样通信,如我们每天打开浏览器浏览网页时,浏览器的进程怎么与webserver通信的?当你用QQ聊天时,QQ进程怎么与server或...
分类:其他好文   时间:2014-06-21 07:18:31    阅读次数:307
HDU 1010
经典搜索 1 #include 2 #include 3 using namespace std; 4 5 const int MAX=10; 6 7 int step[MAX][MAX]; 8 char maze[MAX][MAX]; 9 int n,m,t;10 struct {11 ...
分类:其他好文   时间:2014-06-21 07:12:00    阅读次数:218
Leetcode:Combination Sum
Description:Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesame...
分类:其他好文   时间:2014-06-21 06:55:48    阅读次数:200
HTTPS传输协议原理
我们常常在使用网上银行时看到的连接都是以“https”开始的,那么这个https是什么呢?这其实是表示目前连接使用了SSL进行加密,能保证客户端到服务器端的通信都在被保护起来,那么浏览器是如果实现的呢?下面让我们来介绍一下SSL基本的实现方法。首先我们有两种基本的加解密算法类型:对称加密,非对称加密...
分类:其他好文   时间:2014-06-21 06:51:56    阅读次数:277
Leetcode Binary Tree Preorder Traversal
Given a binary tree, return thepreordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,2,3].Not...
分类:其他好文   时间:2014-06-21 06:40:07    阅读次数:172
Leetcode Binary Tree Postorder Traversal
Given a binary tree, return thepostordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1].No...
分类:其他好文   时间:2014-06-21 06:31:43    阅读次数:265
WP8——页面跳转方法
1.页面传值: this.NavigationService.Navigate(new Uri("/SecondPage.xaml?CustomerId=1234&Product=555", UriKind.Relative)); protected override void OnNavigate...
分类:其他好文   时间:2014-06-21 06:30:22    阅读次数:142
PatentTips - Virtual translation lookaside buffer
BACKGROUND OF THE INVENTIONA conventional virtual-machine monitor (VM monitor) typically runs on a computer and presents to other software the abstrac...
分类:其他好文   时间:2014-06-21 06:29:43    阅读次数:181
WP8__实现ListBox横向滑动及子项绑定图片等控件
...
分类:其他好文   时间:2014-06-21 06:20:44    阅读次数:163
PatentTips - System and method to deprivilege components of a virtual machine monitor
BACKGROUND INFORMATIONAn embodiment of the present invention relates generally to virtualization platforms and, more specifically, to a system and met...
分类:其他好文   时间:2014-06-21 00:58:07    阅读次数:297
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!