码迷,mamicode.com
首页 >  
搜索关键字:put    ( 16494个结果
django之--模板层
模版层 模版语法传值 {{}}:变量相关 {%%}:逻辑相关 def index(request): # 模版语法可以传递的后端python数据类型 n = 123 f = 11.11 s = '字符串' b = True l = [111,222,333,444] t = (111,222,333 ...
分类:其他好文   时间:2021-04-08 13:59:36    阅读次数:0
#SG函数#HDU 1848 Fibonacci again and again
题目 分析 可取状态只能是斐波那契数,求出SG函数 然后判断三个数sg函数异或和不为0先手必胜 代码 #include <cstdio> #include <cctype> #define rr register using namespace std; const int p[15]={1,2,3 ...
分类:其他好文   时间:2021-04-07 10:55:22    阅读次数:0
EfficientNet & EfficientDet 论文解读
EfficientNet、EfficientiDet系列 BiFPN ...
分类:Web程序   时间:2021-04-06 14:13:28    阅读次数:0
AtCoder Beginner Contest 049 B - Thin
Problem Statement There is an image with a height of H pixels and a width of W pixels. Each of the pixels is represented by either . or *. The charact ...
分类:其他好文   时间:2021-04-05 12:52:04    阅读次数:0
Leetcode 524. Longest Word in Dictionary through Deleting
Description: Given a string s and a string array dictionary, return the longest string in the dictionary that can be formed by deleting some of the gi ...
分类:其他好文   时间:2021-04-05 12:21:20    阅读次数:0
linux防火墙常用命令
一、iptables常用命令 #查看已有的防火墙规则链 iptables -L #清空已有的防火墙规则链 iptables -F #把 INPUT 规则链的默认策略设置为拒绝 iptables -P INPUT DROP #向 INPUT 链中添加允许 ICMP 流量进入的策略规则 iptables ...
分类:系统相关   时间:2021-04-05 11:55:37    阅读次数:0
内置函数input
input(): 接收用户输入的内容 示例代码: result = input('请输入内容:') print(result) # 用户输入的是什么内容就打印什么内容 ...
分类:其他好文   时间:2021-04-05 11:54:27    阅读次数:0
OpenCV -- 使用forEach进行并行像素访问
OpenCV中使用forEach进行并行像素访问 在本教程中,我们将比较Mat类的forEach方法的性能和访问和转换OpenCV中像素值的其他方式。 我们将展示如何使用at方法甚至高效地使用指针算法,forEach比使用at方法快得多。 OpenCV中有隐藏的宝石,有时不是很知名。 其中一个隐藏的 ...
分类:其他好文   时间:2021-04-02 13:33:57    阅读次数:0
05_hashmap的个人总结
hashmap<K,V> hash表基于map接口的继承。这个继承提供了所有的map操作,允许空值和空键.hashmap类大致有hashtable,除了它不能并发和允许空值。这个类不能保证map的顺序,尤其是它不能保证数据的顺序一直不变。对于get和put的执行时间是常量,假如hash功能合适的分散 ...
分类:其他好文   时间:2021-04-02 13:21:36    阅读次数:0
yuv格式转换
public static void decodeYUV420SPrgb565(int[] rgb, byte[] yuv420sp, int width, int height) { final int frameSize = width * height; for (int j = 0, yp ...
分类:其他好文   时间:2021-04-01 13:29:11    阅读次数:0
16494条   上一页 1 ... 12 13 14 15 16 ... 1650 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!