码迷,mamicode.com
首页 >  
搜索关键字:str    ( 67828个结果
C#将每个单词首字母大写
1. C#将每个单词首字母大写 private static string processing(string str)//处理这段英文的方法 { string[] strArray = str.Split("_".ToCharArray()); string result = string.Emp ...
分类:Windows程序   时间:2021-06-10 17:58:46    阅读次数:0
leetcode-python-FizzBuzz
?这是啥算法题。。 逐个判断写个循环即可 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
golang之反射
依赖的包为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
Dice (III)(掷骰子&每面至少出现1次的期望)
题目:https://vjudge.z180.cn/problem/LightOJ-1248#author=0 题意:掷骰子,每个面至少出现一次的投掷期望 题解:几何分布 #include <algorithm> #include <bitset> #include <cmath> #include ...
分类:其他好文   时间:2021-06-09 15:28:58    阅读次数:0
测试-javascript数据类型运算
javascript简单基础 文章大纲 ###js的三种输出方式 ###js语法 ###js调错 ###js|html|css注释 ###js变量 js的三种输出方式 输出到控制台 console.log(); console.log('aaaa'); console.log('hahhah'); ...
分类:编程语言   时间:2021-06-09 15:28:21    阅读次数:0
MySQL数据库表分区功能详解
1、什么是表分区? mysql数据库中的数据是以文件的形势存在磁盘上的,默认放在/mysql/data下面(可以通过my.cnf中的datadir来查看),一张表主要对应着三个文件,一个是frm存放表结构的,一个是myd存放表数据的,一个是myi存表索引的。如果一张表的数据量太大的话,那么myd,m ...
分类:数据库   时间:2021-06-09 10:32:43    阅读次数:0
《从头再来》剑指offer.68II 二叉树的最近公共祖先
给定一个二叉树, 找到该树中两个指定节点的最近公共祖先。 百度百科中最近公共祖先的定义为:“对于有根树 T 的两个结点 p、q,最近公共祖先表示为一个结点 x,满足 x 是 p、q 的祖先且 x 的深度尽可能大(一个节点也可以是它自己的祖先)。” 特判不为空过后,一定要马上判断root是否等于p或q ...
分类:其他好文   时间:2021-06-09 10:30:45    阅读次数:0
LLVM 获取Value Type
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
vue使用this.$router跳转路由与传值取值
本窗口打开: 传参: 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
67828条   上一页 1 ... 21 22 23 24 25 ... 6783 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!