码迷,mamicode.com
首页 >  
搜索关键字:long live the queen    ( 22219个结果
scala小记
1.数据类型 Byte 8位有符号补码整数。数值区间为 -128 到 127 Short 16位有符号补码整数。数值区间为 -32768 到 32767 Int 32位有符号补码整数。数值区间为 -2147483648 到 2147483647 Long 64位有符号补码整数。数值区间为 -9223 ...
分类:其他好文   时间:2021-05-24 04:37:41    阅读次数:0
uniApp 实现微信小程序和app视频播放flv格式视频监控
video 支持 App平台: 支持本地视频(mp4/flv)、网络视频地址(mp4/flv/m3u8)及流媒体(rtmp/hls/rtsp)。 小程序: live-player 支持 app不支持 百度小程序支持 m3u8 格式;微信小程序支持 flv, rtmp 格式 所以决定微信小程序使用li ...
分类:微信   时间:2021-05-24 01:41:50    阅读次数:0
Java计算一段程序的运行时间
①精确到纳秒 long startTime=System.nanoTime();//获取开始时间 /* 测试的程序代码; */ long endTime=System.nanoTime();//获取结束时间 System.out.println("运行时间是:"+(endTime-startTime ...
分类:编程语言   时间:2021-05-24 00:33:53    阅读次数:0
CodeForces CF242E (CodeForces Round 149 Div.2 Problem E)题解
CodeForces Round 149 Div.2 Problem E XOR on Segment 线段树进阶题 ...
分类:其他好文   时间:2021-05-24 00:11:16    阅读次数:0
[ AGC003 D ] Anticube
题目 Atcoder 思路 代码 #include <iostream> #include <algorithm> #include <cmath> #include <map> #define int long long using namespace std; const int N = 100 ...
分类:其他好文   时间:2021-05-24 00:04:21    阅读次数:0
[Codeforces 559C] Gerald and Giant Chess
https://codeforces.ml/contest/559/problem/C 题意: 从矩阵的左上角走到右下角,其中$n$个格子不能走,每次只能向右走或者向下走,问方案数。矩阵大小$105 \times 105$,\(1 \leq n \leq 2000\)。 思路: 矩阵大小太大了,不能 ...
分类:其他好文   时间:2021-05-23 23:32:23    阅读次数:0
Leetcode 69. x 的平方根 二分
地址 https://leetcode-cn.com/problems/sqrtx/ 实现 int sqrt(int x) 函数。 计算并返回 x 的平方根,其中 x 是非负整数。 由于返回类型是整数,结果只保留整数的部分,小数部分将被舍去。 示例 1: 输入: 4 输出: 2 示例 2: 输入: ...
分类:其他好文   时间:2021-05-23 23:18:08    阅读次数:0
每日LeetCode - 7. 整数反转(C语言和Python 3)
C语言 使用long类型: #include "math.h" int reverse(int x){ int max = pow(2,31)-1; int min = pow(2,31)*-1; long n=0; while (x!=0){ n = n*10 + x%10; x = x/10; ...
分类:编程语言   时间:2021-05-23 23:09:40    阅读次数:0
[每日一题]leetcode 7. 整数反转
class Solution { public: int reverse(int x) { // cout << 1111 << endl; long long ret = 0; long long y = x; int f = 0; if(y < 0) f = 1, y = -y; // cout ...
分类:其他好文   时间:2021-05-23 23:04:46    阅读次数:0
类型转换
类型转换 `低 高` `byte,short,char -> int -> long -> float -> double` 强制类型转换 (高 低) 自动类型转换(低 高) 注意点: 不能进行布尔值的转换 不能把对象类型转换为不相干的类型 在把高容量转换为低容量的时候,强制转换 转换的时候可能存在 ...
分类:其他好文   时间:2021-05-23 22:54:36    阅读次数:0
22219条   上一页 1 ... 9 10 11 12 13 ... 2222 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!