码迷,mamicode.com
首页 >  
搜索关键字:long live the queen    ( 22219个结果
树状数组
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> ii; typedef vector<int> vi; typedef vector<ii> vii; typedef ...
分类:编程语言   时间:2021-02-27 13:27:43    阅读次数:0
Java(6):类型转换以及计算溢出问题
1 类型转换 ? 由于Java是强类型语言,所以要进行有些运算的时候,需要用到类型转换。运算中,不同类型的数据先转换为同一类型,然后进行运算。 低 高 byte,short,char > int > long > float > double 1.1 强制转换 由高到低 (类型)变量名 // 强制转 ...
分类:编程语言   时间:2021-02-27 13:11:10    阅读次数:0
nginx 请求多个域名指定对应的根目录
同一个nginx配置文件,请求不同的域名可以指定对应的目录 nginx配置 cat long.conf server { listen 80; server_name a.com b.com c.com; location / { root /home/long/$host/; index inde ...
分类:其他好文   时间:2021-02-27 13:10:39    阅读次数:0
面试之线程池
1。构造方法 public ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFa ...
分类:编程语言   时间:2021-02-27 13:05:13    阅读次数:0
力扣 2021.02.25 最长公共前缀
题目 要点 其实本题是找所有一个列表中所有元素的公共子集,也就是最小是空集(""),最大是最短元素。那我们则需要比较最小长度的元素和最大长度的元素,看它们有多少相同。 解题 class Solution: def longestCommonPrefix(self, strs: List[str]) ...
分类:其他好文   时间:2021-02-25 12:22:33    阅读次数:0
mysql如何自动截取保存
背景:测试服/正式服的字段类型为varchart(200) 页面该字段录入超过200个字符保存。测试服报错“Data too long for column”;正式服自动截取200个字符保存,没有报错。 原因:mysql的my.ini文件中的sql_mode配置不同,通过 select @@GLOB ...
分类:数据库   时间:2021-02-25 12:16:01    阅读次数:0
JDBC中自定义类的存储和遍历
1、在idea中定义一个User类 1 import lombok.Data; 2 3 @Data 4 public class User { 5 private long id; 6 private String userName; 7 private String password; 8 pri ...
分类:数据库   时间:2021-02-25 11:50:11    阅读次数:0
数据类型的转换
类型转换 基本类型优先级 低 →高 byte , short , char , int , long , float , double 转换规则 1. 强制转换(由高转低) int i = 128; byte b = (byte)i;//内存溢出,输出结果出现问题 2. 自动转换(由低转高) int ...
分类:其他好文   时间:2021-02-25 11:44:08    阅读次数:0
求1到20的阶乘之和
1 #include<stdio.h> 2 #include<math.h> 3 int main() 4 { 5 long long int jiecheng(int a); 6 long long int sum=jiecheng(20); 7 printf("%lld",sum); 8 ret ...
分类:其他好文   时间:2021-02-24 13:27:15    阅读次数:0
Codeforces Round #697 (Div. 3) A. Odd Divisor
Aimee 只要不能写成$2N N \subseteq N*$就肯定有 #include<iostream> #include<cstdio> #include<cmath> #define int long long using namespace std; int n,m; int prime[ ...
分类:其他好文   时间:2021-02-24 13:26:00    阅读次数:0
22219条   上一页 1 ... 20 21 22 23 24 ... 2222 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!