码迷,mamicode.com
首页 > 2021年02月15日 > 全部分享
Codeforces 982 D. Shark
本题链接:CF982 D. Shark 题目大意 给定$n$个数,定义一个分度值$k$:将数组中小于$k$的连续段找出来,要求每段的长度都相等,在此前提下找出能让连续小于分度值$k$的段数最多的$k$,如果还有多解,则输出最小的$k$. 数据范围: \(1 \leq n \leq 10^5\) \( ...
分类:其他好文   时间:2021-02-15 12:44:25    阅读次数:0
计算工资,算工资
直接上代码: url = "D://zhangdan.txt" arr = [] sum = 0 with open(url) as f: for i in f: arr.append(float(i)) for i in range(len(arr)): print(f'{i+1}号 : {arr ...
分类:其他好文   时间:2021-02-15 12:44:13    阅读次数:0
爬虫:之下载QQ音乐(我还没有搞定,等我学了爬虫回来写你)
import requests import re import os import json import time as t class QQmusic(): """代码仅供学习""" def __init__(self): """初始化""" self.headers = { 'Accept- ...
分类:其他好文   时间:2021-02-15 12:44:00    阅读次数:0
filter的灵活运用,对数据层级关系的处理 (Cascader 级联选择器的理想数据处理)
运用filter对 Cascader 级联选择器数据的处理: 理想数据类型: options: [{ value: 'zhinan', label: '指南', children: [{ value: 'shejiyuanze', label: '设计原则', children: [{ value: ...
分类:其他好文   时间:2021-02-15 12:43:41    阅读次数:0
开发自定义的dremio 函数
dremio 自定义函数的开发与drill 模式是一样的,以下是一个简单demo 预备 dremio 一些核心的功能都是在 dremio-sabot-kernel 中的,可以看看源码还是比较有用的 项目结构 项目主要是创建一个uuid 的函数 项目结构 ├── pom.xml ├── src │ ├ ...
分类:其他好文   时间:2021-02-15 12:43:24    阅读次数:0
IDEA反编译
IDEA反编译 第一步 点击project structure(快捷键Ctrl+Alt+Shift+S),复制图中的文件地址到导航栏 第二步 可以看到文件打开之后是乱码,我们回到IDEA右键包或类,选择Open in Explorer打开文件夹,把文件拷贝进去。可以看到IDEA多了一个类,打开它,可 ...
分类:其他好文   时间:2021-02-15 12:43:06    阅读次数:0
ASM25th003: 磁芯大战core wars
相关链接:https://blog.csdn.net/weixin_34256074/article/details/92064028百科:https://baike.baidu.com/item/core%20war/6157795?fr=aladdin官网:http://www.koth.org ...
分类:其他好文   时间:2021-02-15 12:42:52    阅读次数:0
前缀树(Trie)
实现前缀树 知识点 Trie (发音为 "try") 或前缀树是一种树数据结构,用于检索字符串数据集中的键。 常见的应用场景有: 自动补全 拼写检查 IP路由(最长前缀匹配) 打字预测 示例 实现 Trie (前缀树) class TrieNode { private final int R = 2 ...
分类:其他好文   时间:2021-02-15 12:42:37    阅读次数:0
给你的SpringBoot项目定制一个牛年专属banner吧
新春快乐,牛年大吉! 新的一年是牛年,在SpringBoot项目里自定义了一个牛年相关的banner,看起来可真不错。 上面是自己制作的一个banner,相关的ASCII字符在文末。 SpringBoot项目自定义banner非常简单,通过在classpath下添加一个banner.txt或设置ba ...
分类:编程语言   时间:2021-02-15 12:42:19    阅读次数:0
异步方法测试,暂时不知道对错
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:其他好文   时间:2021-02-15 12:42:07    阅读次数:0
vue 递归组件的两种方法
app.vue <template> <div> <list :data="data"></list> <hr/> <render :data="data"></render> </div> </template> <script> import list from "./list.vue"; im ...
分类:其他好文   时间:2021-02-15 12:41:49    阅读次数:0
[Bash] Read and Use JSON in Bash with jq
jq Bash, unfortunately, doesn’t ship with a command that can work with JSON natively. In this lesson, we’ll learn how to read and do basic queries on ...
分类:Web程序   时间:2021-02-15 12:41:34    阅读次数:0
0242. Valid Anagram (E)
Valid Anagram (E) 题目 Given two strings s and t , write a function to determine if t is an anagram of s. Example 1: Input: s = "anagram", t = "nagaram" ...
分类:其他好文   时间:2021-02-15 12:41:17    阅读次数:0
StatefulSet删除
1.分类 级联删除: 删除StatefulSet时同时删除pod 非级联删除: 删除StatefulSet时不删除pod 2.级联删除 [root@k8s-master01 ~]# kubectl get pod NAME READY STATUS RESTARTS AGE nginx-6cdd5d ...
分类:其他好文   时间:2021-02-15 12:41:00    阅读次数:0
struct 和 class的区别
struct默认成员为public的,class默认成员为private的,此外并没有什么区别 所以用一个结构体给另一个结构体赋值时,一般结构体里如果没有定义赋值运算符,则会像类那样使用默认赋值运算符或默认拷贝构造函数。 1 #include <iostream> 2 3 using namespa ...
分类:其他好文   时间:2021-02-15 12:40:35    阅读次数:0
Vue2.x Class & Style Bindings
Intoduciton: The way of using '' in html part confused me when I was learning Class&Style Bindings in Vue's official guide.(of course it's also becaus ...
分类:其他好文   时间:2021-02-15 12:40:17    阅读次数:0
1042 Shuffling Machine (20 分)
模拟题。 const int N=55; string mp[]={"S","H","C","D","J"}; string s[N]; string t[N]; int p[N]; int n; int cnt; void init() { for(int i=0;i<4;i++) for(int ...
分类:系统相关   时间:2021-02-15 12:40:01    阅读次数:0
192条   1 2 3 4 5 6 ... 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!