1. C#将每个单词首字母大写 private static string processing(string str)//处理这段英文的方法 { string[] strArray = str.Split("_".ToCharArray()); string result = string.Emp ...
?这是啥算法题。。 逐个判断写个循环即可 class Solution: def fizzBuzz(self, n: int) -> List[str]: result = [] for i in range(1,n+1): if i % 3 == 0 and i % 5 == 0 : result ...
分类:
编程语言 时间:
2021-06-10 17:39:18
阅读次数:
0
依赖的包为reflect。 Kind():返回最基础的类型。 type Kind uint const ( Invalid Kind = iota Bool Int Int8 Int16 Int32 Int64 Uint Uint8 Uint16 Uint32 Uint64 Uintptr Floa ...
分类:
其他好文 时间:
2021-06-09 15:36:10
阅读次数:
0
题目:https://vjudge.z180.cn/problem/LightOJ-1248#author=0 题意:掷骰子,每个面至少出现一次的投掷期望 题解:几何分布 #include <algorithm> #include <bitset> #include <cmath> #include ...
分类:
其他好文 时间:
2021-06-09 15:28:58
阅读次数:
0
javascript简单基础 文章大纲 ###js的三种输出方式 ###js语法 ###js调错 ###js|html|css注释 ###js变量 js的三种输出方式 输出到控制台 console.log(); console.log('aaaa'); console.log('hahhah'); ...
分类:
编程语言 时间:
2021-06-09 15:28:21
阅读次数:
0
1、什么是表分区? mysql数据库中的数据是以文件的形势存在磁盘上的,默认放在/mysql/data下面(可以通过my.cnf中的datadir来查看),一张表主要对应着三个文件,一个是frm存放表结构的,一个是myd存放表数据的,一个是myi存表索引的。如果一张表的数据量太大的话,那么myd,m ...
分类:
数据库 时间:
2021-06-09 10:32:43
阅读次数:
0
给定一个二叉树, 找到该树中两个指定节点的最近公共祖先。 百度百科中最近公共祖先的定义为:“对于有根树 T 的两个结点 p、q,最近公共祖先表示为一个结点 x,满足 x 是 p、q 的祖先且 x 的深度尽可能大(一个节点也可以是它自己的祖先)。” 特判不为空过后,一定要马上判断root是否等于p或q ...
分类:
其他好文 时间:
2021-06-09 10:30:45
阅读次数:
0
void llvtype(std::string_view k, Value* v) { std::cout << std::format("{}:{}:{}", k, (int)v->getType()->getTypeID(), v->getName().str() ) << "\n"; } . ...
分类:
其他好文 时间:
2021-06-08 23:38:58
阅读次数:
0
本算法采用广播电台覆盖区域来做演示,设置五个电台集合,存放可以覆盖的区域,再设置一个总集合,存放所有的区域,然后只要未全覆盖,则每次都选择能包括最多未覆盖区域的电台,这就是一个最优解。代码如下: public static void main(String[] args) { HashMap<Str ...
分类:
编程语言 时间:
2021-06-08 23:28:46
阅读次数:
0
本窗口打开: 传参: this.$router.push({ name: 'info-detail', params: {id: id}}) 取参: this.$route.params.id 新窗口打开 传参: window.open(this.$router.resolve({ path: 'i ...
分类:
其他好文 时间:
2021-06-08 23:19:17
阅读次数:
0