码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
asp.net core Webapi 3.1 上传文件的多种方法(附大文件上传) 以及swagger ui 上传文件
asp.net core Webapi是有多种上传文件的方法的 另外swagger ui也可以选择文件来上传文件 下面直接上code 1:WebApi后端代码 1 using System; 2 using System.Collections.Generic; 3 using System.Lin ...
分类:Windows程序   时间:2020-07-30 16:56:11    阅读次数:122
AcWing 240. 食物链
AcWing 240. 食物链 #include <bits/stdc++.h> using namespace std; const int N=1e6+10; int n,m; int p[N],d[N]; //find函数返回的是根节点 int find(int x){ if(p[x]!=x) ...
分类:Windows程序   时间:2020-07-30 14:43:50    阅读次数:89
移动云发短信(C#版)
一、根据 选择的协议(下图是客户截图给我的,故凑合着看吧) 下载对应的文档,http协议的下载上面那份,ws协议的下载下面那份,注意:如果协议不对,统统返回InvalidUsrOrPwd 二、写代码之前,建议先用PostMan试试发短信,随后再写代码。由于接口需要base64加密解密和md5的计算, ...
分类:移动开发   时间:2020-07-30 14:36:08    阅读次数:143
如何用tensorflow实现MLP
""" Multilayer Perceptron. A Multilayer Perceptron (Neural Network) implementation example using TensorFlow library. This example is using the MNIST d ...
分类:其他好文   时间:2020-07-30 14:32:23    阅读次数:68
AcWing 838. 堆排序
AcWing 838. 堆排序 #include <bits/stdc++.h> using namespace std; const int N=1e6+10; int h[N],num; void down(int u){ int t=u; if(u*2<=num&&h[u*2]<h[t]) t ...
分类:编程语言   时间:2020-07-30 14:25:51    阅读次数:68
Oracle 19c Database Upgrade From 12.2.0.1 to 19.2.0.0 Using DBU
Oracle 19c Database Upgrade From 12.2.0.1 to 19.2.0.0 Using DBUA Description:- There are different ways of upgrading to the latest release of Oracle d ...
分类:数据库   时间:2020-07-30 10:43:05    阅读次数:79
C++信息管理系统练习
音乐管理器 #include<iostream> #include<string> #include<unistd.h> using namespace std; #define MAX 300 //界面清空函数 void clear() { char buf[1024]={0}; cout<<"请 ...
分类:编程语言   时间:2020-07-30 01:44:14    阅读次数:80
POJ - 3264 Balanced Lineup
题目链接 线段树,求区间最大值减去区间最小值的值。 #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> using namespace std; const int N = ...
分类:其他好文   时间:2020-07-30 01:40:15    阅读次数:67
C语言指针经典算法应用《指针作为函数参数》
C语言指针经典算法应用《指针作为函数参数》函数的参数不仅可以是整型、浮点型、字符型等数据,还可以是指针类型。它的作用是将一个变量的地址传送给被调用函数的形参。#include <iostream> using namespace std; int main() { void swap(int *p1 ...
分类:编程语言   时间:2020-07-30 01:37:10    阅读次数:73
AcWing 839. 模拟堆
AcWing 839. 模拟堆 #include <bits/stdc++.h> using namespace std; const int N=1e6+10; // h[N]存储堆中的值, h[1]是堆顶,x的左儿子是2x, 右儿子是2x + 1 // ph[k]存储第k个插入的点在堆中的位置 ...
分类:Windows程序   时间:2020-07-30 01:35:46    阅读次数:90
53562条   上一页 1 ... 90 91 92 93 94 ... 5357 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!