1.yum安裝 yum安裝 http://nginx.org/packages/centos/7/noarch/RPMS/ 第一步: 安裝命令: yum localinstall http://nginx.org/packages/centos/7/noarch/RPMS/nginx-nr-agen ...
分类:
系统相关 时间:
2018-07-14 17:17:41
阅读次数:
286
exgcd(a,b,x,y) { if(b==0) x=1,y=0; else exgcd(a,a%b,y,x-(a/b)*y; } ax1+by1=c; ax2+by2=c; a(x1-x2)+b(y1-y2)=0; x=x1-x2; y=y1-y2; g=gcd(a,b); a=a0*g; b= ...
分类:
编程语言 时间:
2018-07-01 11:50:18
阅读次数:
139
views.pydef ajax1(request): ret={'status':'true','message':'successful'} return HttpResponse(json.dumps(ret))<h2>基于Ifram和form的伪ajax</h2><iframe id="i1 ...
分类:
Web程序 时间:
2018-06-10 15:32:13
阅读次数:
204
a. Number readyState 状态值(整数) 详细: 0-未初始化,尚未调用open()方法; 1-启动,调用了open()方法,未调用send()方法; 2-发送,已经调用了send()方法,未接收到响应; 3-接收,已经接收到部分响应数据; 4-完成,已经接收到全部响应数据; b. ...
分类:
Web程序 时间:
2018-06-10 00:21:26
阅读次数:
230
首先接触的就是欧几里得求最大公约数(GCD) 递归的写法: 在扩展欧几里得中,设法求 ax + by = gcd(a, b) 中的一组 x 和 y 的解 当 b = 0 的时候, gcd(a, b) = a,此时的 x = 1, y = 0为其中的一组的解 当 b ≠ 0 的时候 , 设 ax1 + ...
分类:
其他好文 时间:
2018-06-02 19:35:57
阅读次数:
173
1 import matplotlib.pyplot as plt 2 3 ax1 = plt.subplot(211) 4 ax2 = plt.subplot(212) 5 6 ax1.set_xticks(range(4)) 7 ax1.set_xticklabels(["a","b","c", ...
分类:
其他好文 时间:
2018-05-28 22:47:01
阅读次数:
238
ax1 是顺时针方向的图 ax2 是逆时针方向的图 set_theta_direction(direction) Set the direction in which theta increases. clockwise, -1: Theta increases in the clockwise d ...
分类:
其他好文 时间:
2018-05-23 13:46:52
阅读次数:
779
题目 分析 首先,设$f_{i,j}$表示最大的以(i,j)为左下角的正方形的边长。 转移显然,$f_{i,j}=\max(f_{i 1,j},f_{i,j 1},f_{i 1,j 1})+1$ 接着,再设$g_{i,j,k,l}$表示在以$(k,l)$为左上角,$(k+2^i 1,l+2^j 1) ...
分类:
其他好文 时间:
2018-05-20 23:13:24
阅读次数:
209
题目描述 对于一个给定的S={a1,a2,a3,…,an},若有P={ax1,ax2,ax3,…,axm},满足(x1<x2<…<xm) 且(ax1<ax2<…<axm)。那么就称P为S的一个上升序列。如果有多个P满足条件,那么我们想求字典序最小的那个。 任务 给出S序列,给出若干询问。对于第i个询 ...
分类:
其他好文 时间:
2018-05-17 15:23:21
阅读次数:
180