码迷,mamicode.com
首页 >  
搜索关键字:ex    ( 2448个结果
1074 Reversing Linked List (25分)(链表区间反转)
1074 Reversing Linked List (25分) Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For ex ...
分类:其他好文   时间:2020-06-13 00:48:49    阅读次数:54
JavaScript操作DOM对象(赠删表格中的元素)
<!DOCTYPE > <html> <head> <meta charset=UTF-8"> <title>DOM增删表格中的元素</title> <link rel="stylesheet" type="text/css" href="ex_2_style/css.css" /> <script ...
分类:编程语言   时间:2020-06-13 00:38:03    阅读次数:73
odoo 多个数据库http请求指定数据库
以python代码为例: import requests def func(): session = requests.session() url = 'http://IP:8069/web?db=temp' # 指定数据库名称 url2 = 'http://IP:8069/stock_ex/sto ...
分类:数据库   时间:2020-06-11 13:47:53    阅读次数:163
[Intro to Deep Learning with PyTorch -- L2 -- N14] Sigmoid function
The sigmoid function is defined as sigmoid(x) = 1/(1+e-x). If the score is defined by 4x1 + 5x2 - 9 = score, then which of the following points has ex ...
分类:其他好文   时间:2020-06-11 09:12:55    阅读次数:56
Django 自定义错误页面 403 404...
第一步:设置settings.py DEBUG = False ALLOWED_HOSTS = ['*'] 第二步:创建错误页面 在templates文件夹下面创建自定义的错误页面。 第三步:设置views.py,编写异常函数,如下所示。 def page_not_found(request, ex ...
分类:其他好文   时间:2020-06-09 09:26:35    阅读次数:54
Excel表列名称-leetcode
Excel表列名称 1. 地址 https://leetcode-cn.com/problems/excel-sheet-column-title/ 2. 思路 进制转换的题目,但是对边界条件的处理并不是很好想 这题我看了题解: https://leetcode-cn.com/problems/ex ...
分类:其他好文   时间:2020-06-06 23:08:33    阅读次数:82
lombok-ex 编译时注解框架,性能完爆 AOP
lombok-exlombok-ex是一款类似于lombok的编译时注解框架。主要补充一些lombok没有实现,且自己会用到的常见工具。编译时注解性能无任何损失,一个注解搞定一切,无三方依赖。创作目的补充lombok缺失的注解,便于日常开发使用。lombok的源码基本不可读,应该是加密处理了。为其他注解相关框架提升性能提供基础,后期考虑替换为编译时注解。特性@Serial序列化@Util工具类@T
分类:其他好文   时间:2020-06-06 11:18:52    阅读次数:50
lombok-ex 编译时注解框架,性能完爆 AOP
lombok-ex lombok-ex 是一款类似于 lombok 的编译时注解框架。 主要补充一些 lombok 没有实现,且自己会用到的常见工具。 编译时注解性能无任何损失,一个注解搞定一切,无三方依赖。 创作目的 补充 lombok 缺失的注解,便于日常开发使用。 lombok 的源码基本不可 ...
分类:其他好文   时间:2020-06-05 23:06:06    阅读次数:64
STM8L051F3P6低功耗配置
最低功耗是halt(); 因为halt会关闭所有时钟,所以不用刻意去关时钟。 重要的是管脚的配置,根据不同情况配置板上的管脚 我的空板上用PB1作为外部中断来唤醒所以配置为上拉输入,下降沿触发。 GPIO_Init(GPIOB, GPIO_Pin_1, GPIO_Mode_In_PU_IT); EX ...
分类:其他好文   时间:2020-06-03 15:38:21    阅读次数:138
【思维】状压dp—— 2020 联想杯 M
这个状压还要输出方案实在是太ex了 第 i 行放完了水后,能新种下的甘蔗数量取决于 i ? 1 行和 i ? 2 行 的状态 令 dp【i,j】 表示放完前 i 行且最后两行状态为 j 时最多能种下的数量 我们在第 i 行放水有可能能使 i ? 1 行的某个格子能够放上甘蔗了, 但如果不知道 i ? ...
分类:其他好文   时间:2020-06-02 19:12:37    阅读次数:78
2448条   上一页 1 ... 7 8 9 10 11 ... 245 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!