码迷,mamicode.com
首页 >  
搜索关键字:secure    ( 2824个结果
匈牙利算法(素数伴侣(HW1112))
#define _CRT_SECURE_NO_WARNINGS#include#include#include#include#includeusing namespace std;const int N = 101;bool isSushu(int n){ if (n % 2 == 0 ||...
分类:编程语言   时间:2015-09-02 00:15:02    阅读次数:274
SSH上传下载文件
安装 SSH(Secure Shell) 服务以提供远程管理服务? sudo apt-get install ssh? SSH 远程登入 Ubuntu 机? ssh username@192.168.0.1? 将 文件/文件夹 从远程 Ubuntu 机拷至本地(scp)? scp -r username@192.16...
分类:Web程序   时间:2015-09-01 00:17:11    阅读次数:146
基础连接已经关闭: 未能为 SSL/TLS 安全通道建立信任关系
英文:The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel 使用HttpWebRequest 访问 https://mapi.alipay...
分类:其他好文   时间:2015-08-31 16:48:41    阅读次数:273
HD1083 二分图,匈牙利算法
#define _CRT_SECURE_NO_WARNINGS#include#include#includeusing namespace std;#define N 500int n1, n2, ans;int result[N];bool state[N];bool map[N][N];boo...
分类:编程语言   时间:2015-08-31 13:09:29    阅读次数:144
Best Financing(HD4833)
每笔收入产生的收益是独立的。计算所有点的收益率,累计。#define _CRT_SECURE_NO_WARNINGS#include#include#includeusing namespace std;struct dd{ int d, e;}ndd[2505];struct ddd{ ...
分类:其他好文   时间:2015-08-30 21:03:51    阅读次数:132
C链表操作
#define _CRT_SECURE_NO_WARNINGS #include #include #include typedef struct Node{ int data; struct Node *next;}SLIST;SLIST *SList_Create(); //创建链...
分类:其他好文   时间:2015-08-29 18:44:36    阅读次数:123
二维树状数组(HD2642)
#define _CRT_SECURE_NO_WARNINGS#include#include#includeusing namespace std;#define BITMAX 1002 //数组大小typedef int valueType; //元素类型定义valueTyp...
分类:编程语言   时间:2015-08-29 14:00:18    阅读次数:202
一维树状数组(HD1166)
#define _CRT_SECURE_NO_WARNINGS#include#includeusing namespace std;#define BITMAX 50001 //数组大小typedef int valueType; //元素类型定义valueType BITre...
分类:编程语言   时间:2015-08-29 13:55:40    阅读次数:220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!