码迷,mamicode.com
首页 >  
搜索关键字:st    ( 5888个结果
ACwing(基础)--- 筛法求质数
朴素版筛选质数 时间复杂度O(nlogn) int primes[N], cnt; // primes[]存储所有素数 bool st[N]; // st[x]存储x是否被筛掉 void get_primes(int n) { for (int i = 2; i <= n; i ++ ) { if ...
分类:Windows程序   时间:2020-07-06 16:01:49    阅读次数:94
生成0-9随机数
/// <summary> /// 生成0-9随机数 /// </summary> /// <param name="codeNum">生成长度</param> /// <returns></returns> public static string RndNum(int codeNum) { St ...
分类:其他好文   时间:2020-07-06 12:51:31    阅读次数:195
Markdown 模板
不支持flow st=>start: 闹钟响起 op=>operation: 与床板分离 cond=>condition: 分离成功? e=>end: 快乐的一天 st->op->cond cond(yes)->e cond(no)->op 不支持sequence 李雷 -> 韩梅梅: Hello ...
分类:其他好文   时间:2020-07-05 19:39:33    阅读次数:74
求不同的子串种类
题:http://hihocoder.com/problemset/problem/1445 分析:后缀自动机模板 #include<iostream> #include<algorithm> #include<cstring> #include<cstdio> using namespace st ...
分类:其他好文   时间:2020-07-05 15:17:04    阅读次数:69
Fedora32安装google chrome
一.创建yum源文件 cd /etc/yum.repo.d/ touch google-chrome.repo 二.输入yum源信息 [google-chrome] name=google-chrome baseurl=http://dl.google.com/linux/chrome/rpm/st ...
分类:其他好文   时间:2020-07-05 10:38:04    阅读次数:114
ACwing(基础)--- Prim
朴素版prim算法(适用于稠密图) 时间复杂度:O(n^2) 类比Dijkstra算法:Dijkstra算法是更新到起始点的距离,Prim是更新到集合S的距离 S:当前已经在联通块中的所有点的集合 dist[i] = inf for n 次 t<-S外离S最近的点 st[t] = true 利用t更 ...
分类:Windows程序   时间:2020-07-04 18:38:05    阅读次数:219
CSS盒模型
#盒模型-Box Model,用来对HTML元素布局时使用 组成部分:元素内容content、内边距padding、边框border、外边距margin #内边距padding padding-top/right/bottom/left 简写属性padding #边框border border-st ...
分类:Web程序   时间:2020-07-04 17:15:06    阅读次数:70
文件内容排名算法,输入排名函数,返回排名后的文件名
const fs=require('fs'); //比较字符基类大小 相同返回0,str1>str2 返回1,str1<str2 返回-1, function str_compare(str1,str2){ let index=0; let dis=0; while (dis 0&&index<st ...
分类:编程语言   时间:2020-07-04 15:35:58    阅读次数:79
unrecognized command line opton "-std=c++11"
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v\4.0\V140\Application Type\Linux\1.0\Linux.targets(248 ,5): error : unrecognized command line opton "-st ...
分类:编程语言   时间:2020-07-04 15:25:42    阅读次数:70
final修饰注意事项
StringBuilder , StringBuffer ,String 都是 final 的,但是为什么StringBuilder , StringBuffer可以进行修改呢,因为不可变包括的是,引用不可变以及对象不可变,而这三个都是属于引用不可变,(也就是地址不要变,里面的内容随心所欲),而St ...
分类:其他好文   时间:2020-07-04 13:35:07    阅读次数:61
5888条   上一页 1 ... 17 18 19 20 21 ... 589 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!