码迷,mamicode.com
首页 >  
搜索关键字:must begin with    ( 12452个结果
InfluxDB概念和基本操作
InfluxDB基本概念 1、数据格式 在 InfluxDB 中,我们可以粗略的将要存入的一条数据看作一个虚拟的 key 和其对应的 value(field value)。格式如下: cpu_usage,host=server01,region=us-west value=0.64 14340555 ...
分类:数据库   时间:2021-03-01 13:30:25    阅读次数:0
第六章?Web基础之http协议
1、Http协议介绍 1、Http协议介绍 HTTP 全称:Hyper Text Transfer Protocol 中文名:超文本传输协议 什么是超文本 什么是超文本 包含有超链接(Link)和各种多媒体元素标记(Markup)的文本。这些超文本文件彼此链接,形成网状(Web),因此又被称为网页( ...
分类:Web程序   时间:2021-03-01 13:07:20    阅读次数:0
我的vimrc
call plug#begin('~/.vim/plugged')""Plug 'itchyny/lightline.vim'"Plug 'Yggdroot/LeaderF', { 'dir': '~/LeaderF', 'do': './install --all' }" Plug 'junegu ...
分类:系统相关   时间:2021-03-01 13:04:40    阅读次数:0
uni-app 抽奖
本文出自:https://www.cnblogs.com/2186009311CFF/p/14435558.html uniapp插件(示例可直接运行查看效果):https://ext.dcloud.net.cn/plugin?id=4194 预览效果: ay-lottery组件: <templat ...
分类:移动开发   时间:2021-02-24 12:53:03    阅读次数:0
Oracle OCP 19c 认证1Z0-082考试题库(第6题)
Oracle OCP 19c 认证1Z0-082考试题库(第6题)-CUUG整理 You have been tasked to create a table for a banking application. One of the columns must meet three requirem ...
分类:数据库   时间:2021-02-23 14:20:15    阅读次数:0
ABC 192 题解
A 模拟 B 模拟 C 模拟 #include<bits/stdc++.h> using namespace std; #define SET0(a) memset(a,0,sizeof(a)) #define FOR(i,a,b) for(int i=(a);i<=(b);i++) #define ...
分类:其他好文   时间:2021-02-22 12:10:05    阅读次数:0
sql server出发器 监听数据库
//出发器 ALTER trigger [dbo].[trsx] on [dbo].[T1] for insert as BEGIN DECLARE @URL VARCHAR(1000) set @URL='http://192.168.1.xx/api/blade-meal/meal/menu/g ...
分类:数据库   时间:2021-02-20 12:17:00    阅读次数:0
CF932F 【Escape Through Leaf】
##\(\text{Solution}\) 我们设 \(dp_i\) 表示编号为 \(i\) 的节点到达该树叶子节点的最小花费,那么显然我们有以下的转移方程: \(dp_i=\begin{cases}0&i \text{ is leaf}\\\min\limits_{j \in child_s}\l ...
分类:其他好文   时间:2021-02-17 14:47:56    阅读次数:0
Leetcode 第 228 场周赛 赛后总结
比赛地址:这里 T1: 根据题意,符合题目要求的只有两种字符串:0101010…或1010101…,因此,我们可以直接构造这两种字符串并比较与原串的差异即可。 附上代码: class Solution { public: int minOperations(string s) { int len = ...
分类:其他好文   时间:2021-02-17 14:32:43    阅读次数:0
AtCoder Beginner Contest 120
A - Favorite Sound #include<bits/stdc++.h> using namespace std; const int N = 1e6 + 5; typedef long long LL; int main(){ int a, b, c; cin >> a >> b >> ...
分类:其他好文   时间:2021-02-16 12:44:42    阅读次数:0
12452条   上一页 1 ... 12 13 14 15 16 ... 1246 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!