码迷,mamicode.com
首页 >  
搜索关键字:too long    ( 24701个结果
Deeping中使用python连接Oralce报错:Cannot locate a 64-bit Oracle Client library: "./instantclient_21_1/libclntsh.so: file too short"
背景 最近工作中经常会有测试、项目经理让我查一下生产问题,每次都要去数据库查半天,数据库是部署在客户内网的一个Oracle数据库, 个人对于Oracle数据库的存储过程不太熟悉,于是想着写个Python脚本方便以后排查问题。网上搜到目前Python连接Oracle数据库 最好用的库是cx_Oracl ...
分类:数据库   时间:2021-06-28 19:23:30    阅读次数:0
CF771E Bear and Rectangle Strips【贪心,dp】
给定 \(2\times n\) 的矩阵 \(t\),求最多能切分出多少个和为 \(0\) 的连续子矩阵。 \(n\le 3\cdot 10^5\),\(|t_{i,j}|\le 10^9\)。 朴素的想法是按列 dp,设 \(f_{i,j}\) 表示只考虑第一行前 \(i\) 格和第二行前 \(j ...
分类:其他好文   时间:2021-06-28 19:06:56    阅读次数:0
斐波那契数列
斐波那契数列: 0 1 1 2 3 5 8 13 21 ...... 按某种特定顺序排列的数列 第一项为0,第二项为1,之后的每一项都等于前两项之和。 当数字过大时,这两种方法都有可能造出数字溢出,应使用 long 或者 double 型变量存储。 方法一: 我们用三个变量 a b c组成一个循环, ...
分类:其他好文   时间:2021-06-28 17:52:43    阅读次数:0
mtt模板
4次FFT 1.21s #include<bits/stdc++.h> using namespace std; #define forg(i,x) for(register int i=fir[x];i;i=nxt[i]) #define uu unsigned #define scanf a14 ...
分类:其他好文   时间:2021-06-28 17:47:57    阅读次数:0
BigInteger常用方法
BigInteger: 对大整数类进行操作,超过long能存储的范围 BigDecimal:对高精度小数进行操作 BigInteger bg = new BigInteger("0"); 初始化 并赋值为0 BigInteger类只能与BigInteger类 进行操作 常用方法: bg.add( ) ...
分类:其他好文   时间:2021-06-25 17:05:29    阅读次数:0
easy excel
/** * 自定义样式 * <p>1. 创建excel对应的实体对象 参照{@link DemoData} * <p>2. 创建一个style策略 并注册 * <p>3. 直接写即可 */ @Test public void styleWrite() { String fileName = Test ...
分类:其他好文   时间:2021-06-25 16:46:34    阅读次数:0
从csv中找到匹配信息
#!/usr/bin/pythonimport csv NewSN = "" # find good SN 给出MAC,寻找对应的SNwith open("DIGI_MAC_28_5_2021_40units.csv", newline='') as csvfile: csv_reader = cs ...
分类:其他好文   时间:2021-06-24 18:03:24    阅读次数:0
Django跨关联关系查询
正向查询: 多表查一表; 反向查询: 一表查多表 关联查询 多对多和一对多 正向查询: one1 = 一类名.objects.get() many_data = one1.多类名小写.all() 反向查询: many1 = 多类名.objects.get() one_data = many1.一类名 ...
分类:其他好文   时间:2021-06-24 17:34:47    阅读次数:0
LeetCode395-至少有 K 个重复字符的最长子串
题目链接:https://leetcode-cn.com/problems/longest-substring-with-at-least-k-repeating-characters public class LeetCode395 { public static void main(String ...
分类:其他好文   时间:2021-06-23 16:28:48    阅读次数:0
new-delete
恢复内容开始 1 new返回的是一个指针; 2 delete: 内置类型:( ①整数 int、short和long ②字符型 char和wchar_t③ 布尔型 bool,整型可用修饰:unsigned,浮点:float、double和long double) 自定义类型 class,struct: ...
分类:其他好文   时间:2021-06-23 16:27:48    阅读次数:0
24701条   上一页 1 2 3 4 5 ... 2471 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!