码迷,mamicode.com
首页 >  
搜索关键字:long live the queen    ( 22219个结果
Historian数据库中sql查询数据的方法
1,查询实时值,从live表中查询,tag名为Item_0 select * from live WHERE TagName = 'Item_0' 返回结果 2,查询历史值,从history表中查询,tag名为Item_0 select * from history WHERE TagName = ...
分类:数据库   时间:2021-06-04 19:44:02    阅读次数:0
【Android】Gradle下载不动,修改为阿里镜像
修改build.gradle文件 // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { goog ...
分类:移动开发   时间:2021-06-04 19:09:13    阅读次数:0
常量 变量
类型转换 publicclassdemo06 { publicstaticvoidmain(String[] args) { inti=128; byteb= (byte)i;//内存溢出 byte 最大值127 //低 高 //byte,short,char,int,long,float,doub ...
分类:其他好文   时间:2021-06-04 19:00:16    阅读次数:0
UVa 10382 Watering Grass (贪心 区间覆盖)
利用几何关系转化以后,变成经典的区间覆盖问题 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 10010; const double eps = 1e-11; int n, L, ...
分类:其他好文   时间:2021-06-03 17:39:32    阅读次数:0
feign 调用注意事项
参考链接: https://blog.csdn.net/wahaha13168/article/details/81211002 https://www.cnblogs.com/merryyou/p/11670171.html feign 接口返回流 服务提供者 @GetMapping("/{id} ...
分类:其他好文   时间:2021-06-02 20:54:56    阅读次数:0
使用再生龙备份|还原Deepin
1.所需资料: 再生龙:clonezilla-live-2.7.1-22-amd64.iso,UltraISO 2.操作步骤: 首先使用UltraISO将再生龙写入U盘,注意写入的时候,要使用RAW模式。 其次,按照步骤: 选择第一项,然后语言选择简体中文,键盘选择美式键盘,然后选择Start_Cl ...
分类:其他好文   时间:2021-06-02 20:07:57    阅读次数:0
如何判断乘法溢出
网上的很多代码都是错的 正确的代码 using ll = long long int; ll is_mul_overflow(ll a,ll b) { if (a == -1) return (b == INT64_MIN); if (b == -1) return (a == INT64_MIN) ...
分类:其他好文   时间:2021-06-02 19:24:09    阅读次数:0
AtCoder Beginner Contest 203 (A~D,玄学二分场)
补题链接:Here A - Chinchirorin 给出 \(a,b,c\) 三个正整数,现请打印各种情况的答案: \(a=b=c\) ,输出一个即可 \(a = b\ and\ a != c\) 或者 \(a = c\ and\ a != b\) 或者 \(b = c\ and\ a != b\ ...
分类:其他好文   时间:2021-06-02 19:08:52    阅读次数:0
Deltix Round, Spring 2021 (open for everyone, rated, Div. 1 + Div. 2)
#include <bits/stdc++.h> #define please return #define ac 0 using namespace std; using ll = long long ; bool vis[1003]; void solve() { int n,m; cin>>n ...
分类:编程语言   时间:2021-06-02 18:28:48    阅读次数:0
换根dp
#include <iostream> #include <vector> using namespace std; using ll = long long ; const int N=2e5+10; ll f[N],g[N],size1[N]; vector<int>gg[N]; void df ...
分类:其他好文   时间:2021-06-02 17:01:29    阅读次数:0
22219条   上一页 1 ... 5 6 7 8 9 ... 2222 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!