码迷,mamicode.com
首页 >  
搜索关键字:volley 缓存 图片    ( 122593个结果
[ AGC006 E ] Rotate 3x3
题目 Atcoder 思路 代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 100010; int n, w[4][N], to[N], st[N]; ...
分类:其他好文   时间:2021-06-02 15:31:22    阅读次数:0
Tensorflow | 绪论
Tensorflow绪论 有句话说的好:“工欲善其事 必先利其器”。 为什么选择Tensorflow2 Tensorflow目前发布了两个版本:1.x和2.0,通过对这两个版本的使用,相较于Tensorflow1.x,有以下特点: (1)简单易用: Tensorflow2去除了冗余的接口,并将计算过 ...
分类:其他好文   时间:2021-06-02 15:30:53    阅读次数:0
[ AGC006 F ] Blackout
题目 Atcoder 思路 代码 #include <iostream> #include <algorithm> #include <cstring> using namespace std; const int N = 100010, M = N << 1; int n, m; int h[N] ...
分类:其他好文   时间:2021-06-02 15:30:41    阅读次数:0
c语言中取址运算符、指针运算符
1、单目运算符&为取址运算符,其作用是获取对象的地址,生成指向对象的指针,与其说是获取地址,不如说是生成指针。对象地址的转换说明为%p,其中的p为pointer的首字母。 #include <stdio.h> int main(void) { int n; double x; int a[3]; p ...
分类:编程语言   时间:2021-06-02 15:15:47    阅读次数:0
电影推荐系统设计
项目系统设计 ...
分类:其他好文   时间:2021-06-02 15:02:30    阅读次数:0
架构师的成长之路初片~nginx优化篇
1:开启对页面的压缩处理 gzip on; //开启压缩 gzip_min_length 1000; //小文件不压缩 gzip_comp_level 4; //压缩比率 gzip_types text/plain text/css application/json application/x-ja ...
分类:其他好文   时间:2021-06-02 15:02:12    阅读次数:0
fastapi 挂载静态文件夹
from fastapi.staticfiles import StaticFiles app.mount(path='/coronavirus/',app=StaticFiles(directory=' ./coronavirus/static', name='static')) ...
分类:Windows程序   时间:2021-06-02 15:01:20    阅读次数:0
echarts多x轴
表明index很关键,否则另一个x轴的数据不显示 ...
分类:其他好文   时间:2021-06-02 14:27:06    阅读次数:0
python 二级 第三方库(pip 、pyinstaller、jieba、wordcloud)
安装方式 首选pip安装,pip安装失败选择自定义安装、文件安装,一般windows系统pip安装有时会失败 pip安装 pip -h 查看指令 自定义安装 路径: https://www.scipy.org/scipylib/download.html 文件安装路径: http://www.lfd ...
分类:编程语言   时间:2021-06-02 14:24:22    阅读次数:0
使用python 写一个自动windows桌面壁纸的程序
使用爬虫爬取图片,然后设置为桌面背景 全部函数 还有好多路径错误,有待优化 使用pyinster打包出exe执行文件 ...
分类:编程语言   时间:2021-06-02 14:19:58    阅读次数:0
122593条   上一页 1 ... 47 48 49 50 51 ... 12260 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!